onSort method

Future<bool> onSort(
  1. int index
)

Implementation

Future<bool> onSort(int index) async {
  busy = true;
  await sort(index, null);
  busy = false;
  return true;
}