CollectionDefinition constructor

CollectionDefinition({
  1. required String name,
  2. List<CollectionFieldDef> fields = const [],
  3. bool scalar = false,
})

Implementation

CollectionDefinition({
  required this.name,
  this.fields = const [],
  this.scalar = false,
});