KeyPropertyModel constructor

KeyPropertyModel({
  1. required String modelName,
  2. required Type type,
  3. bool isNullable = true,
})

Creates a KeyPropertyModel with the given modelName and type.

Implementation

KeyPropertyModel({
  required super.modelName,
  required super.type,
  super.isNullable,
});