missing method

bool missing(
  1. String name
)

Returns if the given tag is not present.

Same as has method, returns true if key's value is null. Read more in has docs.

Implementation

bool missing(String name) => get(name, checked: false) == null;