isHexBytes static method

bool isHexBytes(
  1. String v
)

Implementation

static bool isHexBytes(String v) {
  return _hexBytesRegex.hasMatch(v);
}