setRepresentedUrl static method

Future<void> setRepresentedUrl(
  1. String url
)

Sets the represented URL of the window.

Implementation

static Future<void> setRepresentedUrl(String url) async {
  await _completer.future;
  await _windowManipulatorMethodChannel.invokeMethod('setRepresentedURL', {
    'url': url,
  });
}