map<V> method

RxVal<V> map<V>(
  1. V mapper(
    1. T value
    )
)

Implementation

RxVal<V> map<V>(V Function(T value) mapper) => _MappedRxVal(
      rxVal: this,
      mapper: mapper,
    );