min method

int min(
  1. int other
)

Implementation

int min(int other) => this < other ? this : other;