FutureEitherUnit typedef

FutureEitherUnit = FutureEither<Unit>

A shorthand for a FutureEither that completes with a Unit result.

Represents asynchronous operations that return no value on success.

Implementation

typedef FutureEitherUnit = FutureEither<Unit>;