isNotNull static method

bool isNotNull(
  1. JsonProperty? jsonProperty
)

Implementation

static bool isNotNull(JsonProperty? jsonProperty) =>
    jsonProperty != null &&
    (jsonProperty.notNull == true || jsonProperty.notNullMessage != null);