TodayGroup constructor

const TodayGroup({
  1. Key? key,
  2. TodayGroupType type = TodayGroupType.input,
  3. List<TodayInput>? inputs,
  4. List<TodayDropdown>? selects,
  5. TodayDropdown selectSample()?,
  6. String? label,
  7. String? description,
  8. bool disabled = false,
  9. TodayInput onInputAdded()?,
  10. void onInputRemoved(
    1. String uuid
    )?,
  11. TodayDropdown onSelectAdded()?,
  12. void onSelectRemoved(
    1. String uuid
    )?,
})

Implementation

const TodayGroup({
  super.key,
  this.type = TodayGroupType.input,
  this.inputs,
  this.selects,
  this.selectSample,
  this.label,
  this.description,
  this.disabled = false,
  this.onInputAdded,
  this.onInputRemoved,
  this.onSelectAdded,
  this.onSelectRemoved,
});