jumpTo static method

Future<bool?> jumpTo(
  1. String schemeUrl
)

Implementation

static Future<bool?> jumpTo(String schemeUrl) async {
  final bool? installed = await _channel.invokeMethod('jumToUrl', schemeUrl);
  return installed;
}