setResizable method
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);
}