numericalSort function

int numericalSort(
  1. dynamic a,
  2. dynamic b
)

Implementation

int numericalSort(a, b) {
  return a[0] - b[0];
}