InstanceModel constructor
const
InstanceModel(})
The model of the ClassModel.instances.
Implementation
const InstanceModel(
this.key, {
required this.fields,
final String? dartName,
this.doc,
final bool? convert,
}) : assert(key != '', 'Key can not be empty'),
dartName = dartName ?? '',
convert = convert ?? true;