isEncodedLabelhash static method

bool isEncodedLabelhash(
  1. dynamic hash
)

Implementation

static bool isEncodedLabelhash(hash) {
  return hash.startsWith('[') && hash.endsWith(']') && hash.length == 66;
}