convertAndSaveBase64 static method
Implementation
static Future<void> convertAndSaveBase64({
required String base64String,
required String fileName,
}) async {
try {
final Uint8List bytes = base64Decode(base64String);
await saveBytes(bytes: bytes, fileName: fileName);
} catch (e) {
rethrow;
}
}