create static method

Implementation

static Future<android_os_Bundle> create() async {
  final result =
      await kMethodChannel.invokeMethod<Ref>('android.os.Bundle::create');
  return android_os_Bundle()..refId = result?.refId;
}