MihDateField constructor

const MihDateField({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String labelText,
  4. required bool required,
  5. Color? primaryColor,
  6. Color? secondayColor,
  7. double? width,
  8. double? height,
  9. double? borderRadius,
  10. double? elevation,
  11. bool? darkMode,
  12. FormFieldValidator<String>? validator,
})

Implementation

const MihDateField({
  super.key,
  required this.controller,
  required this.labelText,
  required this.required,
  this.primaryColor,
  this.secondayColor,
  this.width,
  this.height,
  this.borderRadius,
  this.elevation,
  this.darkMode,
  this.validator,
});