EFProperty<T extends IModel> constructor

EFProperty<T extends IModel>({
  1. PropertyGetDelegate<dynamic, T>? propertyGet,
  2. PropertySetDelegate<T, dynamic>? propertySet,
  3. required String name,
  4. required TypeEnum type,
  5. bool isIndexed = true,
})

Implementation

EFProperty(
    {this.propertyGet,
    this.propertySet,
    required this.name,
    required this.type,
    this.isIndexed = true});