match static method
Validates that the input matches another field.
FormRules.match(() => passwordController.text).build()
Implementation
static Validator match(String? Function() getValue, {String? message}) =>
Validator._()..match(getValue, message: message);