max function

num max(
  1. Iterable<num> list
)

Implementation

num max(Iterable<num> list) {
  return maxBy<num>(list, (p0) => p0);
}