intent property

Implementation

Future<android_content_Intent> get intent async {
  final result = await kMethodChannel.invokeMethod<Ref>(
      'android.app.Activity::getIntent', {'__this__': this});
  return android_content_Intent()..refId = result?.refId;
}