getForm method Null safety
- dynamic value,
- dynamic action
Implementation
Widget? getForm(value, action) {
if (widget.form == null) {
return SimpleTextForm(app: widget.app, value: value, formAction: action);
} else {
return null;
}
}
Widget? getForm(value, action) {
if (widget.form == null) {
return SimpleTextForm(app: widget.app, value: value, formAction: action);
} else {
return null;
}
}