Enforces a minimum length on a string.
Matcher minLength(int length) => predicate( (dynamic value) => value is String && value.length >= length, 'a string at least $length character(s) long');