getFile method
Implementation
@override
Future<Uint8List?> getFile({
required String fileName,
String? folderPath,
bool fromRoot = false,
}) async {
if (fromRoot) {
return await getFromRoot(fileName: fileName, folderPath: folderPath);
} else {
return await getFromDCIM(fileName: fileName, subfolder: folderPath);
}
}