compare method Null safety

  1. @override
int compare(
  1. NumStatus m,
  2. Value x,
  3. Value y
)
override

Implementation

@override
int compare(NumStatus m, Value x, Value y) {
  final bx = toBigInt(x, m);
  final by = toBigInt(y, m);
  return bx.compareTo(by);
}