createInputFlushbar static method

Flushbar createInputFlushbar({
  1. required Form textForm,
})

Get a flushbar that shows an user input form.

Implementation

static Flushbar createInputFlushbar({required Form textForm}) {
  return Flushbar(
    duration: null,
    userInputForm: textForm,
  );
}