lookupURLById method

String? lookupURLById(
  1. String id
)

Implementation

String? lookupURLById(String id) {
  final url =
      Uri.https(playStorePrefixURL, '/store/apps/details', {'id': '$id'})
          .toString();

  return url;
}