openSubscriptionSettings static method

Future<void> openSubscriptionSettings({
  1. bool asAnotherTask = false,
  2. Function? callback,
})

Future async method call to open Subscription settings.

Implementation

static Future<void> openSubscriptionSettings(
    {bool asAnotherTask = false, Function? callback}) async {
  await _channel.invokeMethod('subscriptions');
  if (callback != null) handleCallback(callback);
}