add method

int add(
  1. int value
)

Implementation

int add(int value) => (this ?? 0) + value;