AlertCountSelect constructor

const AlertCountSelect({
  1. Key? key,
  2. String? cancelText = '取消',
  3. List<String> list = const [],
  4. int? defaultIndex,
  5. Widget? title,
  6. Widget? message,
  7. List<Widget>? actions,
  8. Widget? cancel,
  9. ScrollController? actionScrollController,
  10. ScrollController? messageScrollController,
})

Implementation

const AlertCountSelect({
  super.key,
  this.cancelText = '取消',
  this.list = const [],
  this.defaultIndex,
  this.title,
  this.message,
  this.actions,
  this.cancel,
  this.actionScrollController,
  this.messageScrollController,
});