DatePickerWidget constructor

const DatePickerWidget({
  1. Key? key,
  2. String label = '',
  3. String? initialDate = '1970-01-01',
  4. String? lastDate,
  5. Map<String, String>? validationMessages,
  6. required String formControlName,
})

Implementation

const DatePickerWidget({
  Key? key,
  this.label = '',
  this.initialDate = '1970-01-01',
  this.lastDate,
  this.validationMessages,
  required this.formControlName,
}) : super(key: key);