setResizable method

Future<void> setResizable(
  1. bool isResizable
)

Sets whether the window can be manually resized by the user.

Implementation

Future<void> setResizable(bool isResizable) async {
  final Map<String, dynamic> arguments = {
    'isResizable': isResizable,
  };
  await _channel.invokeMethod('setResizable', arguments);
}