setRepresentedFilename static method
Sets the represented file of the window.
Implementation
static Future<void> setRepresentedFilename(String filename) async {
await _completer.future;
await _windowManipulatorMethodChannel.invokeMethod('setRepresentedFile', {
'filename': filename,
});
}