max method

int max(
  1. int other
)

Implementation

int max(int other) => this > other ? this : other;