Tuple2<T1, T2> class
Properties
-
hashCode
→ int
-
The hash code for this object.
no setteroverride
-
head
→ T1
-
no setter
-
init
→ T1
-
no setter
-
last
→ T2
-
no setter
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
tail
→ T2
-
no setter
-
value1
→ T1
-
final
-
value2
→ T2
-
final
Methods
-
append<T3>(T3 value3)
→ Tuple3<T1, T2, T3>
-
-
apply<R>(Function2<T1, T2, R> f)
→ R
-
-
copyWith({T1? value1, T2? value2})
→ Tuple2<T1, T2>
-
-
map1<NT1>(Function1<T1, NT1> f)
→ Tuple2<NT1, T2>
-
-
map2<NT2>(Function1<T2, NT2> f)
→ Tuple2<T1, NT2>
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toMap()
→ Map<String, dynamic>
-
-
toString()
→ String
-
A string representation of this object.
override