call method

T call(
  1. T newValue
)

Implementation

T call(T newValue) {
  value = newValue;
  return _value;
}