isOfMinimumLength method Null safety
- int length
Checks if this is of minimum length.
Implementation
bool isOfMinimumLength(int length) {
return this.length > length - 1;
}
Checks if this is of minimum length.
bool isOfMinimumLength(int length) {
return this.length > length - 1;
}