makeByteList method
Implementation
@Deprecated('It is no more useful. It is called internally when needed.')
Uint8List makeByteList() {
if (_hexString == null) {
throw ArgumentError('Null hex representation');
}
return _makeByteList(_hexString!);
}