Budgeted<W extends Widget> constructor
Budgeted<W extends Widget> ({
- required W child,
- WidgetDegradationPriority priority = WidgetDegradationPriority.essential,
- bool focusBoost = false,
- bool stale = false,
- Key? key,
Creates a render-budget wrapper around child.
Implementation
Budgeted({
required this.child,
this.priority = WidgetDegradationPriority.essential,
this.focusBoost = false,
this.stale = false,
super.key,
});