navigateToAppstore method

Future<void> navigateToAppstore(
  1. String? url
)

Implementation

Future<void> navigateToAppstore(String? url) async {
  try {
    await _channel.invokeMethod(
      'navigateToAppstore',
      {
        'uri': url,
      },
    );
  } catch (error) {
    throw Exception(error);
  }
}