operator + method

T operator +(
  1. T other
)

Implementation

T operator +(T other) {
  if (other.runtimeType == runtimeType) {
    return _clone.withValue(this.value + other.value);
  } else {
    return _convertAndCombine('+', other);
  }
}