minItems method

bool minItems(
  1. Iterable input,
  2. int min
)

Implementation

bool minItems(Iterable input, int min) => input.length >= min;