TBIBDatePickerStyle constructor

const TBIBDatePickerStyle({
  1. bool isTime = false,
  2. bool isDate = false,
  3. bool isDateAndTime = false,
  4. DateFormat? formatDate,
  5. dynamic getTime({
    1. required DateTime date,
    })?,
  6. DateTime? startDate,
  7. DateTime? endDate,
  8. DateTime? initDate,
  9. TimeOfDay? initTime,
})

Implementation

const TBIBDatePickerStyle({
  this.isTime = false,
  this.isDate = false,
  this.isDateAndTime = false,
  this.formatDate,
  this.getTime,
  this.startDate,
  this.endDate,
  this.initDate,
  this.initTime,
});