getMarketplaceRepo function

String getMarketplaceRepo()

Get the marketplace repo based on user type.

Implementation

String getMarketplaceRepo() {
  final userType = Platform.environment['USER_TYPE'];
  return userType == 'ant'
      ? _internalMarketplaceRepo
      : _officialMarketplaceRepo;
}