operator + method Null safety

ValueType operator +(
  1. dynamic other
)

Implementation

ValueType operator +(dynamic other) => generalizeValueTypes([
      this,
      if (other is ValueType)
        other
      else
        estimateJsonFieldValueType(null, other),
    ]);