isDockable method

Future<bool> isDockable()

Returns bool - Whether the window is dockable or not.

@platforms windows

Implementation

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