KeyboardWithDoneButton constructor

const KeyboardWithDoneButton(
  1. {Key? key,
  2. required List<FocusNode> focusNodeList,
  3. required Widget child,
  4. required void onDoneClicked(
      )?,
    1. bool showNextButton = true,
    2. bool autoScroll = true,
    3. bool disableScroll = false,
    4. double overscroll = 60.0}
    )

    Implementation

    const KeyboardWithDoneButton({
      super.key,
      required this.focusNodeList,
      required this.child,
      required this.onDoneClicked,
      this.showNextButton = true,
      this.autoScroll = true,
      this.disableScroll = false,
      this.overscroll = 60.0,
    });