hexToUint8List function Null safety
- String hexString
Implementation
Uint8List hexToUint8List(String hexString) {
final List<int> bytes = hex.decode(hexString);
return Uint8List.fromList(bytes);
}
Uint8List hexToUint8List(String hexString) {
final List<int> bytes = hex.decode(hexString);
return Uint8List.fromList(bytes);
}