scopesToStringList function

List<String> scopesToStringList(
  1. Iterable<OauthScope> scopes
)

Implementation

List<String> scopesToStringList(Iterable<OauthScope> scopes) {
  return scopes.map((e) => scopeMap[e]!).toList();
}