lookupById method
Implementation
Future<Document?> lookupById(String id,
{String? country = 'US',
String? language = 'en',
bool useCacheBuster = true}) async {
assert(id.isNotEmpty);
if (id.isEmpty) return null;
final url = lookupURLById(id,
country: country, language: language, useCacheBuster: useCacheBuster)!;
if (debugEnabled) {
debugPrint(url);
}
try {
final response = await client!.get(Uri.parse(url));
if (response.statusCode < 200 || response.statusCode >= 300) {
debugPrint(id);
return null;
}
final decodedResults = _decodeResults(response.body);
return decodedResults;
} on Exception catch (e) {
debugPrint('$e');
return null;
}
}