map<T> abstract method

Result<T> map<T>(
  1. T callback(
    1. R element
    )
)

Transforms the result with a callback.

Implementation

Result<T> map<T>(T Function(R element) callback);