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