showPreferences static method

Future<void> showPreferences({
  1. PreferencesView view = PreferencesView.purposes,
})

Show the preferences screen

Implementation

static Future<void> showPreferences({PreferencesView view = PreferencesView.purposes}) async {
  await _channel.invokeMethod("showPreferences", {"view": view.name});
}