createChildWindow method

Future<Window?> createChildWindow(
  1. String? id,
  2. WindowConfig config, {
  3. bool start = false,
  4. Window? window,
})

create child window just method shoudld only called in window engine

Implementation

Future<Window?> createChildWindow(
  String? id,
  WindowConfig config, {
  bool start = false, // start immediately if true
  Window? window,
}) async {
  return FloatwingPlugin().internalCreateWindow(id, config,
      start: start,
      window: window,
      channel: _channel,
      name: "window.create_child");
}