TextForm constructor

TextForm({
  1. required String title,
  2. required String value,
  3. required IconData icon,
  4. required Function saveValue,
  5. required Widget buttons,
  6. required double width,
  7. required double height,
  8. String? validator(
    1. String?
    )?,
  9. TextInputType? keyboardType,
})

Implementation

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