openAppSettings method

  1. @override
Future<void> openAppSettings({
  1. AppSettingsType type = AppSettingsType.settings,
  2. bool asAnotherTask = false,
})
override

Implementation

@override
Future<void> openAppSettings({
  AppSettingsType type = AppSettingsType.settings,
  bool asAnotherTask = false,
}) {
  return methodChannel.invokeMethod<void>('openSettings', {
    'asAnotherTask': asAnotherTask,
    'type': type.name,
  });
}