create method

Future<Window?> create({
  1. bool start = false,
})

Implementation

Future<Window?> create({bool start = false}) async {
  // // create the engine first
  return await FloatwingPlugin()
      .createWindow(this.id, this.config!, start: start, window: this);
}