copyWith method

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

Implementation

FwStandardDataFwReportLoader copyWith({
  String? printDate,
  String? printTime,
  String? printDateTime,
  List<String>? dateFields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  FwStandardBusinessLogicFwBusinessLogic? original,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return FwStandardDataFwReportLoader(
    printDate: printDate ?? this.printDate,
    printTime: printTime ?? this.printTime,
    printDateTime: printDateTime ?? this.printDateTime,
    dateFields: dateFields ?? this.dateFields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    original: original ?? this.original,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}