reload method
Reloads the current document.
Implementation
Future<void> reload() async {
if (_isDisposed) {
return;
}
assert(value);
return _pluginChannel.invokeMethod('reload', _browserId);
}
Reloads the current document.
Future<void> reload() async {
if (_isDisposed) {
return;
}
assert(value);
return _pluginChannel.invokeMethod('reload', _browserId);
}