allScopes property

List<String> get allScopes

전체 scope 목록

Implementation

List<String> get allScopes {
  final scopes = collect.toScopes();

  if (additionalScopes != null) {
    scopes.addAll(additionalScopes!);
  }

  return scopes.toSet().toList();
}