hexToBytesOrNull property

Uint8List? get hexToBytesOrNull

Implementation

Uint8List? get hexToBytesOrNull {
  try {
    return hexToBytes;
  } catch (e) {
    return null;
  }
}