createScopes method

String createScopes(
  1. List<String> scopeList
)

Creates a string representation of the scopes.

Implementation

String createScopes(List<String> scopeList) {
  return scopeList.join(' ');
}