expandDockedWindow static method

Future<void> expandDockedWindow()

手动展开停靠的窗口

Implementation

static Future<void> expandDockedWindow() async {
  if (!_isEdgeDockingEnabled || _isWindowExpanded) return;
  await _expandWindow();
}