action property

Future<String?> action

Implementation

Future<String?> get action async {
  final result = await kMethodChannel
      .invokeMethod('android.content.Intent::getAction', {'__this__': this});
  return result;
}