getBytes method

Uint8List? getBytes(
  1. String key
)

Gets a byte array value by the given key.

Implementation

Uint8List? getBytes(String key) {
  return _maybeUnwrapValue(_map[key]) as Uint8List?;
}