getScopesAsString static method

String getScopesAsString(
  1. List<String>? scopes
)

Implementation

static String getScopesAsString(List<String>? scopes) {
  if (scopes != null) {
    return scopes.join(' ').trim();
  }
  return '';
}