isOfficialMarketplaceName function

bool isOfficialMarketplaceName(
  1. String? marketplace
)

Check if a marketplace name is official.

Implementation

bool isOfficialMarketplaceName(String? marketplace) {
  if (marketplace == null) return false;
  return _officialMarketplaceNames.contains(marketplace.toLowerCase());
}