start method

Future<bool?> start()

Implementation

Future<bool?> start() async {
  assert(config != null, "config can't be null");
  return await _channel.invokeMethod("window.start", {
    "id": id,
  });
  // return await FloatwingPlugin().startWindow(id);
}