getAutoStartPermission static method

Future<void> getAutoStartPermission({
  1. bool open = false,
  2. bool newTask = false,
})

open : If true, it will attempt to open the activity, otherwise it will just check its existence

newTask : if true, the activity is attempted to be opened it will add FLAG_ACTIVITY_NEW_TASK to the intent

Implementation

static Future<void> getAutoStartPermission({
  bool open = false,
  bool newTask = false,
}) async {
  Map<String, dynamic> args = <String, dynamic>{};
  args.putIfAbsent("open", () => open);
  args.putIfAbsent("newTask", () => newTask);

  await _channel.invokeMethod('getAutoStartPermission', args);
}