List<String>? get scope { List<String>? scopes; if (isValid()) { scopes = _splitScopes(respMap['scope']); } return scopes; }
set scope(List<String>? scope) { respMap['scope'] = scope; }