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