Max of two numbers (NumUtils has maxOf with null handling).
num maxOf(num a, num b) => a > b ? a : b;