SetUpOrgResponse constructor

SetUpOrgResponse({
  1. ObjectDetails? details,
  2. String? orgId,
  3. String? userId,
})

Implementation

factory SetUpOrgResponse({
  $1.ObjectDetails? details,
  $core.String? orgId,
  $core.String? userId,
}) {
  final result = create();
  if (details != null) result.details = details;
  if (orgId != null) result.orgId = orgId;
  if (userId != null) result.userId = userId;
  return result;
}