operator + method

num operator +(
  1. dynamic other
)
inherited

Addition operator.

Implementation

num operator +(other) {
  if (other == null) {
    return raw;
  }
  if (other is T) {
    return raw + other;
  }
  return raw + other.raw;
}