SextetExtensions<T0, T1, T2, T3, T4, T5> extension
- on
-
- Sextet<T0, T1, T2, T3, T4, T5>
Methods
-
ifType<R>({required void callback(R)})
→ void
-
Executes the provided callback if the current value in the Sextet<T0, T1, T2, T3, T4, T5> is of the specified type
R
.
-
map<R>({required R first(T0)?, required R second(T1)?, required R third(T2)?, required R fourth(T3)?, required R fifth(T4)?, required R sixth(T5)?})
→ R
-
Maps the current instance of Sextet<T0, T1, T2, T3, T4, T5> to a different type
R
.
-
on<R>({Future<void> first(T0)?, Future<void> second(T1)?, Future<void> third(T2)?, Future<void> fourth(T3)?, Future<void> fifth(T4)?, Future<void> sixth(T5)?})
→ Future<void>
-
Executes a callback based on the type of value stored in the Sextet<T0, T1, T2, T3, T4, T5>.