getWebUrl method
Implementation
String getWebUrl() {
String? webUrl;
if (Platform.isAndroid) {
webUrl = androidInfo.webUrl;
} else if (Platform.isIOS) {
webUrl = iosInfo.webUrl;
}
assert(webUrl != null, 'Web url can not null!');
return webUrl!;
}