call method

T call(
  1. T v
)

RxVar(newVal): set new value to the Rx underlying value. dart:call() works in the same way as operator()

Implementation

T call(T v) {
  // if (v != null) {
  value = v;
  // }
  return value;
}