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