lookupURLById method
Implementation
String? lookupURLById(String id,
{String country = 'US', bool useCacheBuster = true}) {
if (id.isEmpty) {
return null;
}
return lookupURLByQSP({'id': id, 'country': country.toUpperCase()},
useCacheBuster: useCacheBuster);
}