ExampleStore constructor
ExampleStore({
- String name = '',
- required String displayName,
- String description = '',
- Timestamp? createTime,
- Timestamp? updateTime,
- required ExampleStoreConfig? exampleStoreConfig,
Implementation
ExampleStore({
this.name = '',
required this.displayName,
this.description = '',
this.createTime,
this.updateTime,
required this.exampleStoreConfig,
}) : super(fullyQualifiedName);