putBundle method

void putBundle(
  1. String key,
  2. Bundle? value
)

Inserts a Bundle value into the mapping of this Bundle, replacing any existing value for the given key. Either key or value may be null.

@param key a String, or null @param value a Bundle object, or null

Implementation

void putBundle(String key, Bundle? value) {
  // unparcel();
  _map[key] = value;
}