equalsByDateModified method

bool equalsByDateModified(
  1. dynamic other
)

Implementation

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