NumberOrd constructor

NumberOrd()

Implementation

NumberOrd()
    : super((num x, num y) => x < y
          ? -1
          : x > y
              ? 1
              : 0);