copyWithWrapped method

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

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));
}