performAction method
Implemented from TextInputClient
Implementation
@override
void performAction(TextInputAction action) {
if (widget.onInputAction != null) {
widget.onInputAction!.call(action);
} else {
_focusNode!.unfocus();
}
}
Implemented from TextInputClient
@override
void performAction(TextInputAction action) {
if (widget.onInputAction != null) {
widget.onInputAction!.call(action);
} else {
_focusNode!.unfocus();
}
}