PickerFooter constructor

PickerFooter({
  1. Key? key,
  2. String? cancelText,
  3. void onCancel()?,
})

Implementation

PickerFooter({
  Key? key,
  this.cancelText,
  this.onCancel,
}) : super(key: key);