callSettingIntent method

Future<void> callSettingIntent({
  1. required String actionType,
})

usage call -> AndroidSettings.ACTION_SETTINGS

Implementation

Future<void> callSettingIntent({required String actionType}) async {
  await _channel.invokeMethod('$_name/callSettingIntent', {
    'actionType': actionType,
  });
}