getProjectPlanUrl function

String getProjectPlanUrl(
  1. String projectId
)

The console URL of the plan and settings page of projectId, where the project's plan can be changed.

Implementation

String getProjectPlanUrl(String projectId) {
  return '${getConsoleBaseUrl()}'
      '${ConsoleRoutes.projectPlanAndSettings(projectId)}';
}