saveToFile method

Future<void> saveToFile(
  1. String filePath
)

Сохранение в файл

Implementation

Future<void> saveToFile(String filePath) async {
  // TODO: Implement ZIP archive creation
  await save();
  // TODO: Create ZIP with all assets
}