BottomItemDialog constructor

const BottomItemDialog({
  1. Key? key,
  2. required List dataList,
  3. required String title,
  4. int? selectId,
  5. Function? tapFunction,
  6. ScrollPhysics? physics,
  7. required double maxHeight,
  8. required BottomItemCallBack callBack,
  9. bool hasConfirm = true,
  10. Widget? customWidget,
})

Implementation

const BottomItemDialog({
  Key? key,
  required this.dataList,
  required this.title,
  this.selectId,
  this.tapFunction,
  this.physics,
  required this.maxHeight,
  required this.callBack, this.hasConfirm = true, this.customWidget,
}) : super(key: key);