Tuple3<T1, T2, T3> class
Constructors
- Tuple3(T1 value1, T2 value2, T3 value3)
-
const
-
Tuple3.fromMap(Map<
String, dynamic> map) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- head → T1
-
no setter
-
init
→ Tuple2<
T1, T2> -
no setter
- last → T3
-
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
tail
→ Tuple2<
T2, T3> -
no setter
- value1 → T1
-
final
- value2 → T2
-
final
- value3 → T3
-
final
Methods
-
append<
T4> (T4 value4) → Tuple4< T1, T2, T3, T4> -
apply<
R> (Function3< T1, T2, T3, R> f) → R -
copyWith(
{T1? value1, T2? value2, T3? value3}) → Tuple3< T1, T2, T3> -
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
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override