customOperator method

bool customOperator(
  1. Object other
)

Implementation

bool customOperator(Object other) {
  return identical(this, other) || other is TutorModel &&
    other.username == username && other.aaa == aaa && const DeepEquality().equals(other.dda, dda);
}