openOemSettings method

Future<bool> openOemSettings(
  1. String label
)

Open an OEM-specific settings screen by label.

The label must match one of the labels returned by getSettingsHealth's oemSettingsScreens list.

Returns true if the screen was opened, false if the label was not found or the intent could not be resolved.

On iOS and Web, always returns false.

Implementation

Future<bool> openOemSettings(String label) {
  throw UnimplementedError('openOemSettings() has not been implemented.');
}