6 lines
128 B
Dart
6 lines
128 B
Dart
/// Information about the currently-running instance.
|
|
class InstanceInfo {
|
|
final int? id;
|
|
|
|
const InstanceInfo({this.id});
|
|
}
|