World constructor

World({
  1. Iterable<Component>? children,
  2. int? priority = -0x7fffffff,
})

Implementation

World({
  super.children,
  super.priority = -0x7fffffff,
});