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