platform/packages/production/lib/src/instance_info.dart

7 lines
128 B
Dart
Raw Normal View History

2018-09-04 22:00:53 +00:00
/// Information about the currently-running instance.
class InstanceInfo {
2021-05-01 02:03:46 +00:00
final int? id;
2018-09-04 22:00:53 +00:00
const InstanceInfo({this.id});
2018-11-06 20:42:59 +00:00
}