fold<T> method
Executes ifRight with the value.
Implementation
@override
T fold<T>(T Function(L) ifLeft, T Function(R) ifRight) => ifRight(_value);
Executes ifRight with the value.
@override
T fold<T>(T Function(L) ifLeft, T Function(R) ifRight) => ifRight(_value);