handleValidator method
Implementation
String? handleValidator(value) {
if (value!.isEmpty || !Const.handle.hasMatch(value)) {
return tr('signup.handle.unmatch');
}
return null;
}
String? handleValidator(value) {
if (value!.isEmpty || !Const.handle.hasMatch(value)) {
return tr('signup.handle.unmatch');
}
return null;
}