transform<V> abstract method

AsyncValue<V> transform<V>(
  1. V cb(
    1. T value
    )
)

Transform the callback cb in AsyncValue.

Implementation

AsyncValue<V> transform<V>(V Function(T value) cb);