isPasswordLengthLonger method

bool isPasswordLengthLonger({
  1. int length = 8,
})

Returns true if password is longer than specified length

Implementation

bool isPasswordLengthLonger({int length = 8}) {
  return isNotBlank ? this!.length >= length : false;
}