setMovable method
Sets whether the window can be moved by user.
@platforms macos
Implementation
Future<void> setMovable(bool isMovable) async {
final Map<String, dynamic> arguments = {
'isMovable': isMovable,
};
await _channel.invokeMethod('setMovable', arguments);
}