copyWith method

WebApiModulesSettingsProjectSettingsProjectDrawingsProjectDrawings copyWith({
  1. String? projectDrawingsId,
  2. String? projectDrawings,
  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. String? createdByUserId,
  15. String? createdByUserName,
  16. String? createdDateTime,
  17. String? modifiedByUserId,
  18. String? modifiedByUserName,
  19. String? modifiedDateTime,
})

Implementation

WebApiModulesSettingsProjectSettingsProjectDrawingsProjectDrawings copyWith({
  String? projectDrawingsId,
  String? projectDrawings,
  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,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesSettingsProjectSettingsProjectDrawingsProjectDrawings(
    projectDrawingsId: projectDrawingsId ?? this.projectDrawingsId,
    projectDrawings: projectDrawings ?? this.projectDrawings,
    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,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}