GeneralInputItem constructor

const GeneralInputItem(
  1. GeneralInputController inputController, {
  2. Key? key,
  3. dynamic onIconTapped(
    1. int
    )?,
  4. bool required = false,
  5. String? title,
  6. IconData? iconData,
  7. bool forDisplay = false,
  8. String? placeholder,
  9. String? parameterKey,
})

Implementation

const GeneralInputItem(this.inputController,
    {Key? key,
    this.onIconTapped,
    this.required = false,
    this.title,
    this.iconData,
    this.forDisplay = false,
    this.placeholder,
    this.parameterKey})
    : super(key: key);