AccountProto_SetSuperAccountScopeRequest constructor

AccountProto_SetSuperAccountScopeRequest({
  1. Int64? id,
  2. AccountProto_Scope? scope,
  3. 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;
}