add method

double add(
  1. double other
)

Implementation

double add(double other) {
  return this + other;
}