TripletExtensions<T0, T1, T2> extension

on

Methods

ifType<R>({required void callback(R)}) → void
Executes the provided callback if the current value in the Triplet<T0, T1, T2> is of the specified type R.
map<R>({R first(T0)?, R second(T1)?, R third(T2)?}) → R
Maps the current instance of Triplet<T0, T1, T2> to a different type R.
on<R>({Future<void> first(T0)?, Future<void> second(T1)?, Future<void> third(T2)?}) Future<void>
Executes a callback based on the type of value stored in the Triplet<T0, T1, T2>.