copyWithWrapped method

FwStandardModulesAdministratorGroupCopySecurityNodeRequest copyWithWrapped({
  1. Wrapped<String?>? fromGroupId,
  2. Wrapped<String?>? toGroupIds,
  3. Wrapped<String?>? securityId,
})

Implementation

FwStandardModulesAdministratorGroupCopySecurityNodeRequest copyWithWrapped({
  Wrapped<String?>? fromGroupId,
  Wrapped<String?>? toGroupIds,
  Wrapped<String?>? securityId,
}) {
  return FwStandardModulesAdministratorGroupCopySecurityNodeRequest(
    fromGroupId: (fromGroupId != null ? fromGroupId.value : this.fromGroupId),
    toGroupIds: (toGroupIds != null ? toGroupIds.value : this.toGroupIds),
    securityId: (securityId != null ? securityId.value : this.securityId),
  );
}