DrawerContentTimePickerParams.withoutButton constructor

DrawerContentTimePickerParams.withoutButton({
  1. required dynamic onChange(
    1. int? hour,
    2. int? minute,
    3. int? second
    )?,
  2. int? initValueHour,
  3. int? initValueMinute,
  4. int? initValueSecond,
  5. Color? overlayColor,
})

Implementation

DrawerContentTimePickerParams.withoutButton({
  required this.onChange,
  this.initValueHour,
  this.initValueMinute,
  this.initValueSecond,
  this.overlayColor,
})  : buttonOnTap = null,
      buttonText = null,
      buttonStyle = null,
      isUseButton = false;