operator + method

String operator +(
  1. String val
)

Concatenates the current value of Rx<String> with val.

Implementation

String operator +(String val) => value + val;