withStarterPlan method

PlanInfoBuilder withStarterPlan()

Implementation

PlanInfoBuilder withStarterPlan() {
  final starterProduct = _starterPlanBundledProjectProduct();
  _productId = 'starter:0';
  _planType = PlanType.starter;
  _projectProduct = starterProduct;
  _displayName = 'Starter';
  _description = 'A test plan description';
  _trialLength = 30;
  _trialEndDate = null;
  _projectsLimit = 3;
  _projectProductInfo = [starterProduct];
  return this;
}