PopupSelectDialog constructor

const PopupSelectDialog({
  1. Key? key,
  2. required List<String> list,
  3. dynamic onSelect(
    1. int selctIndex
    )?,
  4. double? left,
  5. double? right,
  6. double? top = 0,
  7. double? bottom,
  8. Color? bgColor,
})

Implementation

const PopupSelectDialog({Key? key, required this.list, this.onSelect, this.left, this.right, this.top = 0, this.bottom, this.bgColor}) : super(key: key);