getBundleExtra method

Bundle? getBundleExtra(
  1. String name
)

Retrieve extended data from the intent.

@param name The name of the desired item.

@return the value of an item previously added with putExtra(), or null if no Bundle value was found.

@see #putExtra(String, Bundle)

Implementation

Bundle? getBundleExtra(String name) {
  return _extras == null ? null : _extras!.getBundle(name);
}