copyWith method
FwStandardDataFwReportLoader
copyWith({
- String? printDate,
- String? printTime,
- String? printDateTime,
- List<
String> ? dateFields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation, - bool? hasImport,
- FwStandardBusinessLogicFwBusinessLogic? original,
- String? createdByUserId,
- String? createdByUserName,
- String? createdDateTime,
- String? modifiedByUserId,
- String? modifiedByUserName,
- 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,
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,
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,
);
}