contains method
Detect whether this range contains an element.
that
The other range to check whether it's contained in this range.
Returns true if this range contains single value, false otherwise.
Implementation
@override
bool contains(Object? obj) => super._contains(obj);