isNotNull static method

bool isNotNull(
  1. AbstractControl control
)

Returns true if control is not null, otherwise return false.

Implementation

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