handled property
Getter to fetch handled information.
Implementation
bool get handled => _handled;
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;