removeFilesSession method

Future<void> removeFilesSession()

Remove all files that were copied to the app groups in this session

Implementation

Future<void> removeFilesSession() async {
  for (String filePath in _assetsCopiedInAppGroups) {
    final file = File(filePath);
    await file.delete();
  }
}