SetState constructor

const SetState({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. 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);