bundle property

Future<Map<String, dynamic>?> bundle

Implementation

Future<Map<String, dynamic>?> get bundle async {
  final result = await kMethodChannel.invokeMapMethod<String, dynamic>(
      'android.content.Intent::getBundle', {'__this__': this});
  return result;
}