create method

Future<Window?> create({
  1. String? id = "default",
  2. bool start = false,
})

Implementation

Future<Window?> create({
  String? id = "default",
  bool start = false,
}) async {
  assert(!(entry == "main" && route == null));
  return await FloatwingPlugin().createWindow(id, this, start: start);
}