TolyPopPicker constructor

const TolyPopPicker({
  1. Key? key,
  2. Widget? title,
  3. required List<TolyPopItem> tasks,
  4. VoidCallback? onCancel,
  5. String cancelText = "取消",
  6. TolyPopPickerTheme? theme,
})

Implementation

const TolyPopPicker({
  super.key,
  this.title,
  required this.tasks,
  this.onCancel,
  this.cancelText = "取消",
  this.theme,
});