deleteCache method

Future<void> deleteCache()

Implementation

Future<void> deleteCache() async {
  final cacheDirPath = await getCacheDirPath();
  final directPath = "$cacheDirPath/giftVideo";
  await _deleteFolderContents(directPath);
}