setMovable method
Sets whether the window can be moved by user.
Supported Platforms:
- macOS
Implementation
Future<void> setMovable(bool isMovable) async {
final Map<String, dynamic> arguments = {
'isMovable': isMovable,
};
await _invokeMethod('setMovable', arguments);
}