AccountProto_Scope constructor
Implementation
factory AccountProto_Scope({
$core.String? scopeName,
$core.String? scopeValue,
}) {
final $result = create();
if (scopeName != null) {
$result.scopeName = scopeName;
}
if (scopeValue != null) {
$result.scopeValue = scopeValue;
}
return $result;
}