cmp method

  1. @override
int cmp(
  1. Object first,
  2. Object second
)
inherited

compares two values as keys to determine equality and ordering for IndexedDB operations, such as storing and iterating.

Implementation

@override
int cmp(Object first, Object second) => compareKeys(first, second);