isPending property

bool isPending

Implementation

bool get isPending => _getAttribute<bool>(kPending, false);
void isPending=(bool? x)

False when a person's memership in a household is unverified.

pass null to remove key from attributes

Implementation

set isPending(bool? x) =>
    (x == null) ? _attributes.remove(kPending) : _attributes[kPending] = x;