openPlayStoreSubscriptions method

Future<bool> openPlayStoreSubscriptions()

Implementation

Future<bool> openPlayStoreSubscriptions() async {
  if (_platform.isAndroid) {
    return (await _channel
            .invokeMethod<bool?>('openPlayStoreSubscriptions')) ??
        false;
  }
  throw PlatformException(
      code: _platform.operatingSystem, message: "platform not supported");
}