PickerDialog<T> constructor

const PickerDialog<T>({
  1. Key? key,
  2. required dynamic child(
    1. BuildContext
    ),
  3. String? title,
  4. T? onConfirm()?,
  5. Validate<T>? validate,
})

Implementation

const PickerDialog({
  super.key,
  required this.child,
  this.title,
  this.onConfirm,
  this.validate,
  // this.onCancel,
});