numberIsTooSmallMsg static method

String numberIsTooSmallMsg(
  1. String _lowerBound
)

Implementation

static String numberIsTooSmallMsg(String _lowerBound) =>
    Intl.message('Enter a number $_lowerBound or greater',
        name: 'LowerBoundValidator_numberIsTooSmallMsg',
        args: [_lowerBound],
        desc: 'Error message when input number is too small.',
        examples: const {'_lowerBound': 42});