isValidHashNoso static method

bool isValidHashNoso(
  1. String hash
)

Implementation

static bool isValidHashNoso(String hash) {
  if (hash.length < 3 || hash.length > 32) {
    return false;
  }
  return true;
}