isTrueValidationMessage method

String isTrueValidationMessage(
  1. String fieldName
)

Generates a validation error message for a field that must be checked.

This message indicates that the field fieldName must be checked.

Implementation

String isTrueValidationMessage(String fieldName) {
  return Intl.message(
    'The field $fieldName must be checked.',
    name: 'isTrueValidationMessage',
    desc: 'Validation message for a field that must be checked',
    args: [fieldName],
    locale: localeName,
  );
}