FormInputModel constructor

FormInputModel(
  1. String? placeHolder,
  2. Widget? prefix,
  3. MainAxisAlignment? mainAxisAlignment,
  4. double? prefixWidth,
  5. String name,
  6. String? required,
  7. String? requiredMsg,
  8. String? value,
  9. String? title,
  10. List<Map<String, dynamic>>? list,
  11. DateMode? mode,
  12. Widget? component,
)

Implementation

FormInputModel(
  this.placeHolder,
  this.prefix,
  this.mainAxisAlignment,
  this.prefixWidth,
  this.name,
  this.required,
  this.requiredMsg,
  this.value,
  this.title,
  this.list,
  this.mode,
  this.component,
);