openQuickSettings method

Future<void> openQuickSettings()

Opens the quick settings shade on Android and Control Center on iOS.

Doesn't work on iOS Simulator because Control Center is not available there.

See also:

Implementation

Future<void> openQuickSettings() async {
  await _wrapRequest(
    'openQuickSettings',
    () => _client.openQuickSettings(OpenQuickSettingsRequest()),
  );
}