minLen method

bool minLen(
  1. int min
)

Check this string min length, if satisfied condition then return true

Implementation

bool minLen(int min) => length >= min;