makeByteList method

  1. @Deprecated('It is no more useful. It is called internally when needed.')
Uint8List makeByteList()

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!);
}