multiply method

int multiply(
  1. int value
)

Implementation

int multiply(int value) => (this ?? 0) * value;