closeWindowIn static method

void closeWindowIn(
  1. BuildContext context
)

Implementation

static void closeWindowIn(BuildContext context) {
  final key = Provider.of<WindowState>(context, listen: false).key;
  Provider.of<MdiController>(context, listen: false).closeWindow(key);
}