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