reverseCompare function

int reverseCompare(
  1. Object? a,
  2. Object? b
)

Reversed dynamic Comparator function.

Implementation

int reverseCompare(Object? a, Object? b) =>
    (b as Comparable<Object?>).compareTo(a);