openUrl method
Opens a URL or platform deep link.
Implementation
Future<bool> openUrl(String url) {
final uri = Uri.tryParse(url);
if (uri == null || !uri.hasScheme) {
throw ArgumentError.value(url, 'url', 'Use a valid absolute URL.');
}
return NexoraSdkPlatform.instance.openUrl(url);
}