dateIsTooLateMsg method

String dateIsTooLateMsg(
  1. String maximumDate
)

Implementation

String dateIsTooLateMsg(String maximumDate) => Intl.message(
    'Enter $maximumDate or earlier',
    name: 'dateIsTooLateMsg',
    args: [maximumDate],
    examples: const {'maximumDate': 'Dec 31, 2025'},
    meaning: 'Error message',
    desc: 'Displayed when the user enters a valid date, but it\'s after the '
        'maximum date accepted by the date input field.');