timeIsTooLateMsg method

String timeIsTooLateMsg(
  1. String maximumTime
)

Implementation

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