isNull static method

bool isNull(
  1. AbstractControl control
)

Returns true if control is null, otherwise return false.

Implementation

static bool isNull(AbstractControl<dynamic> control) => control.value == null;