foldRight<C> method
This method folds the value from right to left.
Return the result of f
called with b
and the value of Right.
If this Either is Left, return b
.
Implementation
@override
C foldRight<C>(C b, C Function(C acc, R a) f) => b;