orElse<L, R> function
Similar to alt, but the alternative TaskEither is given directly.
Implementation
TaskEither<L, R> Function(TaskEither<L, R> taskEither) orElse<L, R>(
TaskEither<L, R> orElse,
) =>
alt((_) => orElse);