ExampleStore constructor

ExampleStore({
  1. String name = '',
  2. required String displayName,
  3. String description = '',
  4. Timestamp? createTime,
  5. Timestamp? updateTime,
  6. required ExampleStoreConfig? exampleStoreConfig,
})

Implementation

ExampleStore({
  this.name = '',
  required this.displayName,
  this.description = '',
  this.createTime,
  this.updateTime,
  required this.exampleStoreConfig,
}) : super(fullyQualifiedName);