customOperator method

bool customOperator(
  1. Object other
)

Implementation

bool customOperator (Object other) {

       return identical(this, other) || other is TutorModel &&
       runtimeType == other.runtimeType &&
       other.username == username && other.aaa == aaa;


}