ModelProperty.create constructor
ModelProperty.create(})
Implementation
ModelProperty.create(this.id, String? name, int? type,
{int flags = 0,
String? indexId,
this.entity,
String? dartFieldType,
this.relationTarget})
: _dartFieldType = dartFieldType {
this.name = name;
this.type = type;
this.flags = flags;
this.indexId = indexId == null ? null : IdUid.fromString(indexId);
}