sort method

  1. @override
void sort([
  1. int compare(
    1. K a,
    2. K b
    )?
])
override

Sorts the keys of this map.

Implementation

@override
void sort([int Function(K a, K b)? compare]) {
  // TODO: Implement
  throw UnsupportedError("This is not yet supported, but will be in the future.");
}