openAppSettings method
Future<void>
openAppSettings({
- AppSettingsType type = AppSettingsType.settings,
- 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,
});
}