openBrowser method

Future openBrowser(
  1. String webviewUrl
)

Implementation

Future<dynamic> openBrowser(String webviewUrl) async{
  var result = await channel.invokeMethod("open_browser", webviewUrl);
}