Component constructor
Component({
- Iterable<
Component> ? children, - int? priority,
- ComponentKey? key,
Implementation
Component({
Iterable<Component>? children,
int? priority,
this.key,
}) : _priority = priority ?? 0 {
if (children != null) {
addAll(children);
}
}