handled property

bool handled

Getter to fetch handled information.

Implementation

bool get handled => _handled;
void handled=(bool val)

Setter to set the handled information. If handled already, then setting this value to false doesn't affect.

Implementation

set handled(bool val) => _handled = _handled || val;