withGrowthPlan method

PlanInfoBuilder withGrowthPlan()

Implementation

PlanInfoBuilder withGrowthPlan() {
  final growthProduct = _growthPlanBundledProjectProducts();
  _productId = 'growth:0';
  _planType = PlanType.growth;
  _displayName = 'Growth';
  _description = 'A test plan description';
  _projectProduct = growthProduct;
  _trialLength = 30;
  _trialEndDate = null;
  _projectsLimit = 3;
  _projectProductInfo = [growthProduct];
  return this;
}