getLostData method
Implementation
Future<void> getLostData() async {
final LostDataResponse response = await _picker.retrieveLostData();
if (response.isEmpty) {
return;
}
if (response.files != null) {
// ignore: unused_local_variable
for (final XFile file in response.files!) {
//log(file.path);
}
} else {
//log(response.exception.toString());
}
}