clear method

Future<void> clear()

Implementation

Future<void> clear() async {
  _tracks.clear();
  notifyListeners();
  await save();
}