getAllWindowManagerIds static method
Get all window manager ids.
Implementation
static Future<List<int>> getAllWindowManagerIds() async {
return (await _staticChannel
.invokeMethod<List<dynamic>>('getAllWindowManagerIds'))
?.cast<int>() ??
[];
}