copyWithWrapped method
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),
);
}