fold<R> abstract method

R fold<R>(
  1. R onRef(
    1. String ref
    ),
  2. R on(
    1. T p1
    )
)

Implementation

R fold<R>(R Function(String ref) onRef, R Function(T p1) on);