StateWidget constructor

const StateWidget({
  1. Key? key,
  2. required Widget builder(),
})

Creates a StateWidget with the given builder.

Implementation

const StateWidget({super.key, required this.builder});