platform/packages/production/lib/src/instance_info.dart
thomashii@dukefirehawk.com b091b435e4 Migrated production
2021-05-01 10:03:46 +08:00

6 lines
128 B
Dart

/// Information about the currently-running instance.
class InstanceInfo {
final int? id;
const InstanceInfo({this.id});
}