putBytes method

void putBytes(
  1. String key,
  2. Uint8List? value
)

Adds the byte array value to the set by the given key.

Implementation

void putBytes(String key, Uint8List? value) {
  _map[key] = value;
}