hexToBytes method Null safety
- String s
Returns bytes from hex s
.
Implementation
static Uint8List hexToBytes(String s) {
return Uint8List.fromList(hex.decode(s));
}
Returns bytes from hex s
.
static Uint8List hexToBytes(String s) {
return Uint8List.fromList(hex.decode(s));
}