copyWithWrapped method

FwStandardModulesAdministratorWebEventLogWebEventLogLogic copyWithWrapped({
  1. Wrapped<int?>? id,
  2. Wrapped<String?>? serverName,
  3. Wrapped<String?>? webUsersId,
  4. Wrapped<String?>? userId,
  5. Wrapped<String?>? userName,
  6. Wrapped<String?>? logType,
  7. Wrapped<String?>? message,
  8. Wrapped<String?>? data,
  9. Wrapped<int?>? totalMemoryUsageBytes,
  10. Wrapped<String?>? totalMemoryUsageKiloBytes,
  11. Wrapped<String?>? totalMemoryUsageMegaBytes,
  12. Wrapped<String?>? totalMemoryUsageGigaBytes,
  13. Wrapped<String?>? hourStr,
  14. Wrapped<String?>? dateStr,
  15. Wrapped<String?>? activityDate,
  16. Wrapped<String?>? dateStamp,
  17. Wrapped<String?>? auditNote,
  18. Wrapped<String?>? recordTitle,
  19. Wrapped? urlIdentifier,
  20. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  21. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  22. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  23. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  24. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  25. Wrapped<bool?>? hasImport,
  26. Wrapped<bool?>? hasDocuments,
  27. Wrapped<String?>? createdByUserId,
  28. Wrapped<String?>? createdByUserName,
  29. Wrapped<String?>? createdDateTime,
  30. Wrapped<String?>? modifiedByUserId,
  31. Wrapped<String?>? modifiedByUserName,
  32. Wrapped<String?>? modifiedDateTime,
})

Implementation

FwStandardModulesAdministratorWebEventLogWebEventLogLogic copyWithWrapped({
  Wrapped<int?>? id,
  Wrapped<String?>? serverName,
  Wrapped<String?>? webUsersId,
  Wrapped<String?>? userId,
  Wrapped<String?>? userName,
  Wrapped<String?>? logType,
  Wrapped<String?>? message,
  Wrapped<String?>? data,
  Wrapped<int?>? totalMemoryUsageBytes,
  Wrapped<String?>? totalMemoryUsageKiloBytes,
  Wrapped<String?>? totalMemoryUsageMegaBytes,
  Wrapped<String?>? totalMemoryUsageGigaBytes,
  Wrapped<String?>? hourStr,
  Wrapped<String?>? dateStr,
  Wrapped<String?>? activityDate,
  Wrapped<String?>? dateStamp,
  Wrapped<String?>? auditNote,
  Wrapped<String?>? recordTitle,
  Wrapped<dynamic>? urlIdentifier,
  Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
  fields,
  Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  Wrapped<bool?>? hasImport,
  Wrapped<bool?>? hasDocuments,
  Wrapped<String?>? createdByUserId,
  Wrapped<String?>? createdByUserName,
  Wrapped<String?>? createdDateTime,
  Wrapped<String?>? modifiedByUserId,
  Wrapped<String?>? modifiedByUserName,
  Wrapped<String?>? modifiedDateTime,
}) {
  return FwStandardModulesAdministratorWebEventLogWebEventLogLogic(
    id: (id != null ? id.value : this.id),
    serverName: (serverName != null ? serverName.value : this.serverName),
    webUsersId: (webUsersId != null ? webUsersId.value : this.webUsersId),
    userId: (userId != null ? userId.value : this.userId),
    userName: (userName != null ? userName.value : this.userName),
    logType: (logType != null ? logType.value : this.logType),
    message: (message != null ? message.value : this.message),
    data: (data != null ? data.value : this.data),
    totalMemoryUsageBytes: (totalMemoryUsageBytes != null
        ? totalMemoryUsageBytes.value
        : this.totalMemoryUsageBytes),
    totalMemoryUsageKiloBytes: (totalMemoryUsageKiloBytes != null
        ? totalMemoryUsageKiloBytes.value
        : this.totalMemoryUsageKiloBytes),
    totalMemoryUsageMegaBytes: (totalMemoryUsageMegaBytes != null
        ? totalMemoryUsageMegaBytes.value
        : this.totalMemoryUsageMegaBytes),
    totalMemoryUsageGigaBytes: (totalMemoryUsageGigaBytes != null
        ? totalMemoryUsageGigaBytes.value
        : this.totalMemoryUsageGigaBytes),
    hourStr: (hourStr != null ? hourStr.value : this.hourStr),
    dateStr: (dateStr != null ? dateStr.value : this.dateStr),
    activityDate: (activityDate != null
        ? activityDate.value
        : this.activityDate),
    dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
    auditNote: (auditNote != null ? auditNote.value : this.auditNote),
    recordTitle: (recordTitle != null ? recordTitle.value : this.recordTitle),
    urlIdentifier: (urlIdentifier != null
        ? urlIdentifier.value
        : this.urlIdentifier),
    fields: (fields != null ? fields.value : this.fields),
    custom: (custom != null ? custom.value : this.custom),
    defaultFieldAttributes: (defaultFieldAttributes != null
        ? defaultFieldAttributes.value
        : this.defaultFieldAttributes),
    original: (original != null ? original.value : this.original),
    translation: (translation != null ? translation.value : this.translation),
    hasImport: (hasImport != null ? hasImport.value : this.hasImport),
    hasDocuments: (hasDocuments != null
        ? hasDocuments.value
        : this.hasDocuments),
    createdByUserId: (createdByUserId != null
        ? createdByUserId.value
        : this.createdByUserId),
    createdByUserName: (createdByUserName != null
        ? createdByUserName.value
        : this.createdByUserName),
    createdDateTime: (createdDateTime != null
        ? createdDateTime.value
        : this.createdDateTime),
    modifiedByUserId: (modifiedByUserId != null
        ? modifiedByUserId.value
        : this.modifiedByUserId),
    modifiedByUserName: (modifiedByUserName != null
        ? modifiedByUserName.value
        : this.modifiedByUserName),
    modifiedDateTime: (modifiedDateTime != null
        ? modifiedDateTime.value
        : this.modifiedDateTime),
  );
}