StatefulBuilderModifier constructor

const StatefulBuilderModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. 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,
});