PickerHeader constructor

PickerHeader({
  1. Key? key,
  2. double? height,
  3. String? title,
  4. TextStyle? titleTextStyle,
  5. String cancelText = '取消',
  6. String confirmText = '确定',
  7. void onCancel()?,
  8. void onConfirm()?,
})

Implementation

PickerHeader({
  Key? key,
  this.height,
  this.title,
  this.titleTextStyle,
  this.cancelText = '取消',
  this.confirmText = '确定',
  this.onCancel,
  this.onConfirm,
}) : super(key: key);