getForm method Null safety

Widget? getForm(
  1. dynamic value,
  2. dynamic action
)

Implementation

Widget? getForm(value, action) {
  if (widget.form == null) {
    return FaderForm(app: widget.app, value: value, formAction: action);
  } else {
    return null;
  }
}