platform/lib/src/instance_info.dart

6 lines
126 B
Dart
Raw Normal View History

2018-09-04 22:00:53 +00:00
/// Information about the currently-running instance.
class InstanceInfo {
final int id;
const InstanceInfo({this.id});
}