copyWith method

WebApiModulesSettingsWardrobeSettingsWardrobeSourceWardrobeSource copyWith({
  1. String? wardrobeSourceId,
  2. String? wardrobeSource,
  3. bool? inactive,
  4. String? dateStamp,
  5. String? auditNote,
  6. String? recordTitle,
  7. dynamic urlIdentifier,
  8. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  9. List<FwStandardDataFwCustomValue>? custom,
  10. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  11. FwStandardBusinessLogicFwBusinessLogic? original,
  12. List<FwStandardDataFwTranslatedValue>? translation,
  13. bool? hasImport,
  14. bool? hasDocuments,
  15. String? createdByUserId,
  16. String? createdByUserName,
  17. String? createdDateTime,
  18. String? modifiedByUserId,
  19. String? modifiedByUserName,
  20. String? modifiedDateTime,
})

Implementation

WebApiModulesSettingsWardrobeSettingsWardrobeSourceWardrobeSource copyWith({
  String? wardrobeSourceId,
  String? wardrobeSource,
  bool? inactive,
  String? dateStamp,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesSettingsWardrobeSettingsWardrobeSourceWardrobeSource(
    wardrobeSourceId: wardrobeSourceId ?? this.wardrobeSourceId,
    wardrobeSource: wardrobeSource ?? this.wardrobeSource,
    inactive: inactive ?? this.inactive,
    dateStamp: dateStamp ?? this.dateStamp,
    auditNote: auditNote ?? this.auditNote,
    recordTitle: recordTitle ?? this.recordTitle,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}