min method

double min(
  1. double other
)

Implementation

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