validateMatch method Null safety
Implementation
String? validateMatch(String value, String value2) {
return value == value2 ? null : errorText;
}
String? validateMatch(String value, String value2) {
return value == value2 ? null : errorText;
}