fold<W> method

  1. @override
W fold<W>(
  1. W ifLeft(
    1. L f
    ),
  2. W ifRight(
    1. R r
    )
)
override

Implementation

@override
W fold<W>(W Function(L f) ifLeft, W Function(R r) ifRight) => ifRight(_r);