openSettings static method

Future openSettings()

Implementation

static Future openSettings() async {
  if (Platform.isIOS) {
    print("NOT IMPLEMENTED");
    return;
  }
   await _channel.invokeMethod('open_settings');
}