MMeta constructor
MMeta({
- MKey? mkey,
- MSchemaRef? mtype,
- DateTime? mmodified,
- String? maccount,
- bool isDeleted = false,
Implementation
factory MMeta(
{MKey? mkey,
MSchemaRef? mtype,
DateTime? mmodified,
String? maccount,
bool isDeleted = false}) {
return _MMeta(
mkey: mkey,
mtype: mtype,
mmodified: mmodified,
maccount: maccount,
isDeleted: isDeleted);
}