FeedbackInput constructor

const FeedbackInput({
  1. Key? key,
  2. InputDecoration? feedbackInputStyle,
  3. required dynamic feedbackResponse(
    1. String
    ),
  4. TextStyle? feedbackInputTextStyle,
})

Implementation

const FeedbackInput(
    {super.key,
    this.feedbackInputStyle,
    required this.feedbackResponse,
    this.feedbackInputTextStyle});