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