clearPlaylists method

Future<bool> clearPlaylists()

Used to delete ALL the playlists.

Return:

  • If the room was cleaned, will return true, if not, will return false.

See too:

Implementation

Future<bool> clearPlaylists() async {
  return await _PlaylistDao().clearPlaylists();
}