Sequence7<T1, T2, T3, T4, T5, T6, T7> class

Immutable typed sequence with 7 values.

Annotations
  • @immutable

Constructors

Sequence7(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh)
Constructs a sequence with 7 typed values.
const

Properties

fifth → T5
Returns the fifth element of this sequence.
final
first → T1
Returns the first element of this sequence.
final
fourth → T4
Returns the fourth element of this sequence.
final
hashCode int
The hash code for this object.
no setteroverride
last → T7
Returns the last (or seventh) element of this sequence.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
second → T2
Returns the second element of this sequence.
final
seventh → T7
Returns the seventh element of this sequence.
final
sixth → T6
Returns the sixth element of this sequence.
final
third → T3
Returns the third element of this sequence.
final

Methods

map<R>(R callback(T1, T2, T3, T4, T5, T6, T7)) → R
Converts this sequence to a new type R with the provided callback.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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