CollectionFieldDef constructor

CollectionFieldDef({
  1. required String name,
  2. required CollectionDefinition type,
  3. bool isList = false,
})

Implementation

CollectionFieldDef({
  required this.name,
  required this.type,
  this.isList = false,
});