BuilderEx constructor

const BuilderEx({
  1. Key? key,
  2. required dynamic builder(
    1. State<StatefulWidget> state
    ),
  3. String? name,
  4. dynamic init(
    1. State<StatefulWidget> state
    )?,
  5. dynamic dispose(
    1. State<StatefulWidget> state
    )?,
})

Implementation

const BuilderEx({Key? key, required this.builder, this.name, this.init, this.dispose}) : super(key: key);