BundleMap typedef

BundleMap = Map<String, Object?>

Map type alias that is used in place of Android Bundle https://developer.android.com/reference/android/os/Bundle.

Decoded values inside a BundleMap that is received from native will use List<Object?> and Map<Object?, Object?> irresponsive of content.

Implementation

typedef BundleMap = Map<String, Object?>;