setRepresentedUrl static method
Sets the represented URL of the window.
Implementation
static Future<void> setRepresentedUrl(String url) async {
await _completer.future;
await _windowManipulatorMethodChannel.invokeMethod('setRepresentedURL', {
'url': url,
});
}