setWindowResizable method

  1. @override
Future<void> setWindowResizable(
  1. String windowId,
  2. bool resizable
)
override

Implementation

@override
Future<void> setWindowResizable(String windowId, bool resizable) {
  return methodChannel.invokeMethod('setWindowResizable', {
    'windowId': windowId,
    'resizable': resizable,
  });
}