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