addNo static method

dynamic addNo(
  1. int v1,
  2. int v2
)

Implementation

static addNo(int v1, int v2) {
  return v1 + v2;
}