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});