fromHexString method

Uint8List fromHexString()

Implementation

Uint8List fromHexString() {
  try {
    return Uint8List.fromList(hex.decoder.convert(this));
  } catch(e) {
    throw e;
  }
}