StatefulBuilderModifier constructor
const
StatefulBuilderModifier({
- Key? key,
- Key? modifierKey,
- required SingleChildStatefulWidgetBuilder builder,
Creates a widget that both has state and delegates its build to a callback.
The builder
argument must not be null.
Implementation
const StatefulBuilderModifier({
super.key,
super.modifierKey,
required this.builder,
});