confirmedValidationMessage method

String confirmedValidationMessage(
  1. String fieldName
)

Generates a validation error message for a field that needs confirmation.

This message indicates that the confirmation of fieldName does not match.

Implementation

String confirmedValidationMessage(String fieldName) {
  return Intl.message(
    'Confirmation of $fieldName does not match.',
    name: 'confirmedValidationMessage',
    desc: 'Validation message for a field that needs confirmation',
    args: [fieldName],
    locale: localeName,
  );
}