scope property

List<String>? get scope

Implementation

List<String>? get scope {
  var scopes;

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

  return scopes;
}