DateForm constructor

DateForm({
  1. required String title,
  2. required DateTime? value,
  3. required IconData icon,
  4. required Function saveValue,
  5. required Widget buttons,
  6. required double width,
  7. required double height,
})

Implementation

DateForm({
  required this.title,
  required this.value,
  required this.icon,
  required this.saveValue,
  required this.buttons,
  required this.width,
  required this.height,
});