copyWithWrapped method

FwStandardDataFwReportLoader copyWithWrapped({
  1. Wrapped<String?>? printDate,
  2. Wrapped<String?>? printTime,
  3. Wrapped<String?>? printDateTime,
  4. Wrapped<List<String>?>? dateFields,
  5. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  6. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  7. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  8. Wrapped<bool?>? hasImport,
  9. Wrapped<bool?>? hasDocuments,
  10. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  11. Wrapped<String?>? createdByUserId,
  12. Wrapped<String?>? createdByUserName,
  13. Wrapped<String?>? createdDateTime,
  14. Wrapped<String?>? modifiedByUserId,
  15. Wrapped<String?>? modifiedByUserName,
  16. Wrapped<String?>? modifiedDateTime,
})

Implementation

FwStandardDataFwReportLoader copyWithWrapped({
  Wrapped<String?>? printDate,
  Wrapped<String?>? printTime,
  Wrapped<String?>? printDateTime,
  Wrapped<List<String>?>? dateFields,
  Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  Wrapped<bool?>? hasImport,
  Wrapped<bool?>? hasDocuments,
  Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  Wrapped<String?>? createdByUserId,
  Wrapped<String?>? createdByUserName,
  Wrapped<String?>? createdDateTime,
  Wrapped<String?>? modifiedByUserId,
  Wrapped<String?>? modifiedByUserName,
  Wrapped<String?>? modifiedDateTime,
}) {
  return FwStandardDataFwReportLoader(
    printDate: (printDate != null ? printDate.value : this.printDate),
    printTime: (printTime != null ? printTime.value : this.printTime),
    printDateTime: (printDateTime != null
        ? printDateTime.value
        : this.printDateTime),
    dateFields: (dateFields != null ? dateFields.value : this.dateFields),
    custom: (custom != null ? custom.value : this.custom),
    defaultFieldAttributes: (defaultFieldAttributes != null
        ? defaultFieldAttributes.value
        : this.defaultFieldAttributes),
    translation: (translation != null ? translation.value : this.translation),
    hasImport: (hasImport != null ? hasImport.value : this.hasImport),
    hasDocuments: (hasDocuments != null
        ? hasDocuments.value
        : this.hasDocuments),
    original: (original != null ? original.value : this.original),
    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),
  );
}