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