isNullFromJson static method

bool isNullFromJson(
  1. dynamic json,
  2. String key
)

Implementation

static bool isNullFromJson(json, String key) =>
    json.containsKey(key) && json[key] != null;