startDragging method

Future<void> startDragging()

Starts a window drag based on the specified mouse-down event. On Windows, this is disabled during full screen mode.

Implementation

Future<void> startDragging() async {
  if (Platform.isWindows && await isFullScreen()) return;
  await _channel.invokeMethod('startDragging');
}