MMeta constructor

MMeta({
  1. MKey? mkey,
  2. MSchemaRef? mtype,
  3. DateTime? mmodified,
  4. String? maccount,
  5. 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);
}