equalsByDateModified method
Implementation
bool equalsByDateModified(other) {
return identical(this, other) ||
other is MEntity &&
runtimeType == other.runtimeType &&
mkey == other.mkey &&
mmodified == other.mmodified;
}