AccountProto_SetSuperAccountScopeRequest constructor
AccountProto_SetSuperAccountScopeRequest({
- Int64? id,
- AccountProto_Scope? scope,
- String? clusterName,
Implementation
factory AccountProto_SetSuperAccountScopeRequest({
$fixnum.Int64? id,
AccountProto_Scope? scope,
$core.String? clusterName,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (scope != null) {
$result.scope = scope;
}
if (clusterName != null) {
$result.clusterName = clusterName;
}
return $result;
}