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