max static method

double max(
  1. num a,
  2. num b
)

Implementation

static double max(num a, num b) {
  return m.max(a, b).toDouble();
}