isMovable method

Future<bool> isMovable()

Returns bool - Whether the window can be moved by user.

@platforms macos

Implementation

Future<bool> isMovable() async {
  return await _channel.invokeMethod('isMovable');
}