fold<W> method

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

Implementation

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