lookupURLById method

String? lookupURLById(
  1. String id, {
  2. String country = 'US',
  3. bool useCacheBuster = true,
})

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);
}