closeProductViewController static method

Future<void> closeProductViewController()

iOS Only: Closes the SKStoreProductViewController that was opened previously.

Implementation

static Future<void> closeProductViewController() async {
  if (!Platform.isIOS) return;
  await _channel.invokeMethod<void>('closeProductViewController');
}