getFullPathToGithubRepo method

dynamic getFullPathToGithubRepo(
  1. String repo
)

Implementation

ExternalLinkConfig getFullPathToGithubRepo(String repo) {
  ExternalLinkConfig github = socialMediaLinksConfig!["GitHub"]!;
  github.path += repo;
  return github;
}