World constructor

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

Implementation

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