StatefullBuilder constructor

const StatefullBuilder({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context
    ),
  3. void initState(
    1. BuildContext context
    )?,
})

Implementation

const StatefullBuilder({
  Key? key,
  required this.builder,
  this.initState,
}) : super(key: key);