DropDownElementB<ChildData extends WithLangText> constructor

const DropDownElementB<ChildData extends WithLangText>({
  1. Key? key,
  2. required ChildData cd,
  3. double completionPercent = 0,
  4. String? completionLabel,
  5. required List<MyListTileData> actions,
  6. required dynamic onAction(
    1. MyListTileData actionTileData
    ),
  7. Future onDelete() = _onDelete,
})

Implementation

const DropDownElementB({
  super.key,
  required this.cd,
  this.completionPercent = 0,
  this.completionLabel,
  required this.actions,
  required this.onAction,
  this.onDelete = _onDelete,
});