FxEnglishDatePicker constructor

const FxEnglishDatePicker({
  1. Key? key,
  2. required String title,
  3. Widget? subTitleWidget,
  4. void onChange(
    1. DateTime?
    )?,
  5. DateTime? initialTime,
  6. DateTime? minTime,
  7. DateTime? maxTime,
})

Implementation

const FxEnglishDatePicker({
  Key? key,
  required this.title,
  this.subTitleWidget,
  this.onChange,
  this.initialTime,
  this.minTime,
  this.maxTime,
}) : super(key: key);