scope property

List<String>? scope

Implementation

List<String>? get scope {
  List<String>? scopes;

  if (isValid()) {
    scopes = _splitScopes(respMap['scope']);
  }

  return scopes;
}
void scope=(List<String>? scope)

Implementation

set scope(List<String>? scope) {
  respMap['scope'] = scope;
}