ComponentState constructor

ComponentState({
  1. required Widget builder(
    1. BuildContext,
    2. ControlsInterface
    ),
  2. required String stateName,
  3. String? markdown,
  4. String? codeSample,
})

Implementation

ComponentState({
  required this.builder,
  required this.stateName,
  this.markdown,
  this.codeSample,
});