QuintetExtensions<T0, T1, T2, T3, T4> extension
Methods
-
ifType<R>({required void callback(R)})
→ void
-
Executes the provided callback if the current value in the Quintet<T0, T1, T2, T3, T4> is of the specified type
R
.
-
map<R>({R first(T0)?, R second(T1)?, R third(T2)?, R fourth(T3)?, R fifth(T4)?})
→ R
-
Maps the current instance of Quintet<T0, T1, T2, T3, T4> 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>
-
Executes a callback based on the type of value stored in the Quintet<T0, T1, T2, T3, T4>.