TxDateRangePickerButton constructor

const TxDateRangePickerButton({
  1. Key? key,
  2. DateTimeRange<DateTime>? initialDateRange,
  3. ValueChanged<DateTimeRange<DateTime>>? onChanged,
  4. ButtonStyle? style,
  5. String? format,
  6. Widget? icon = const Icon(Icons.calendar_month, size: 16.0),
  7. DateTime? minimumDate,
  8. DateTime? maximumDate,
})

Implementation

const TxDateRangePickerButton({
  super.key,
  this.initialDateRange,
  this.onChanged,
  this.style,
  this.format,
  this.icon = const Icon(Icons.calendar_month, size: 16.0),
  this.minimumDate,
  this.maximumDate,
});