copyWith method
Implementation
FwCoreModulesAdministratorGroupCopySecurityNodeRequest copyWith(
{String? fromGroupId, String? toGroupIds, String? securityId}) {
return FwCoreModulesAdministratorGroupCopySecurityNodeRequest(
fromGroupId: fromGroupId ?? this.fromGroupId,
toGroupIds: toGroupIds ?? this.toGroupIds,
securityId: securityId ?? this.securityId);
}