SetState constructor
const
SetState({
- Key? key,
- required Widget builder(
- BuildContext context,
- Object? object
Supply a 'builder' passing in the App's 'data object' and latest BuildContext object.
Implementation
const SetState({Key? key, required this.builder}) : super(key: key);