timeIsTooEarlyMsg method

String timeIsTooEarlyMsg(
  1. String minimumTime
)

Implementation

String timeIsTooEarlyMsg(String minimumTime) => Intl.message(
    'Enter $minimumTime or later',
    name: 'timeIsTooEarlyMsg',
    args: [minimumTime],
    examples: const {'minimumTime': '13:35'},
    meaning: 'Error message',
    desc: 'Displayed when the user enters a valid time, but it\'s before the '
        'minimum time accepted by the time input field.');