validate property

  1. @override
String? get validate
override

Implementation

@override
String? get validate {
  if (destination == account) {
    return "destination Must not be equal to the account";
  }
  return super.validate;
}