clear method

Future<bool> clear({
  1. bool notify = true,
})

Clears the active dataset sort and rebuilds the dataset view.

Implementation

Future<bool> clear({bool notify = true}) {
  return set(const <FdcDataSetSort>[], notify: notify);
}