copyWith method

WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory copyWith({
  1. int? systemUpdateHistoryId,
  2. String? usersId,
  3. String? userName,
  4. DateTime? updateDateTime,
  5. String? fromVersion,
  6. String? toVersion,
  7. String? errorMessage,
  8. String? dateStamp,
  9. String? auditNote,
  10. String? recordTitle,
  11. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  12. List<FwStandardDataFwCustomValue>? custom,
  13. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  14. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory copyWith(
    {int? systemUpdateHistoryId,
    String? usersId,
    String? userName,
    DateTime? updateDateTime,
    String? fromVersion,
    String? toVersion,
    String? errorMessage,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory(
      systemUpdateHistoryId:
          systemUpdateHistoryId ?? this.systemUpdateHistoryId,
      usersId: usersId ?? this.usersId,
      userName: userName ?? this.userName,
      updateDateTime: updateDateTime ?? this.updateDateTime,
      fromVersion: fromVersion ?? this.fromVersion,
      toVersion: toVersion ?? this.toVersion,
      errorMessage: errorMessage ?? this.errorMessage,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}