minLength static method

NiceRequirementRule minLength(
  1. int length
)

Implementation

static NiceRequirementRule minLength(int length) => NiceRequirementRule(
      label: 'At least $length characters',
      check: (v) => v.length >= length,
    );