AlertCountSelect constructor

const AlertCountSelect({
  1. Key? key,
  2. Widget? title,
  3. Widget? message,
  4. required List<Widget> actions,
  5. Widget? cancelButton,
  6. ScrollController? actionScrollController,
  7. ScrollController? messageScrollController,
})

Implementation

const AlertCountSelect(
    {super.key,
    this.title,
    this.message,
    required this.actions,
    this.cancelButton,
    this.actionScrollController,
    this.messageScrollController});