contains method

  1. @override
bool contains(
  1. Object? obj
)
override

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);