operator + method

num? operator +(
  1. num other
)

Implementation

num? operator +(num other) {
  if (value != null) {
    value = value! + other;
    return value;
  }
  return null;
}