getExtras method

Bundle? getExtras()

Retrieves a map of extended data from the intent.

@return the map of all extras previously added with putExtra(), or null if none have been added.

Implementation

Bundle? getExtras() {
  return (_extras != null) ? Bundle.fromBundle(_extras!) : null;
}