CustomDatePiker constructor

const CustomDatePiker({
  1. Key? key,
  2. DateTime? startDate,
  3. DateTime? endDate,
  4. String? initialValue,
  5. String? placeholder,
  6. ValueChanged<String>? onChanged,
  7. String? label,
  8. bool isRequired = false,
  9. String? errorText,
})

Data Picker constructor

Implementation

const CustomDatePiker({
  super.key,
  this.startDate,
  this.endDate,
  this.initialValue,
  this.placeholder,
  this.onChanged,
  this.label,
  this.isRequired = false,
  this.errorText,
});