missing method

bool missing(
  1. String name
)

Returns if the given tag is not present.

Implementation

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