getAllWindowManagerIds static method

Future<List<int>> getAllWindowManagerIds()

Get all window manager ids.

Implementation

static Future<List<int>> getAllWindowManagerIds() async {
  return (await _staticChannel
              .invokeMethod<List<dynamic>>('getAllWindowManagerIds'))
          ?.cast<int>() ??
      [];
}