Range class

A range defining a set of items on a collection.

Annotations
  • @immutable

Constructors

Range({required int start, int? limit})
A new range definition with start (>= 0) and optional positive limit.
const

Properties

hashCode int
The hash code for this object.
no setterinherited
limit int?
An optional limit setting maximum number of items for the range.
final
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
start int
The index to specify the first item (by index) of the range.
final
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited