copyWith method

WebApiModulesAdministratorCreateNewSystemHistoryCreateNewSystemHistory copyWith({
  1. int? createNewSystemHistoryId,
  2. String? usersId,
  3. String? userName,
  4. String? companyName,
  5. String? databaseName,
  6. String? url,
  7. String? applicationPool,
  8. String? errorMessage,
  9. String? dateStamp,
  10. String? auditNote,
  11. String? recordTitle,
  12. dynamic urlIdentifier,
  13. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  14. List<FwStandardDataFwCustomValue>? custom,
  15. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  16. FwStandardBusinessLogicFwBusinessLogic? original,
  17. List<FwStandardDataFwTranslatedValue>? translation,
  18. bool? hasImport,
  19. String? createdByUserId,
  20. String? createdByUserName,
  21. String? createdDateTime,
  22. String? modifiedByUserId,
  23. String? modifiedByUserName,
  24. String? modifiedDateTime,
})

Implementation

WebApiModulesAdministratorCreateNewSystemHistoryCreateNewSystemHistory
copyWith({
  int? createNewSystemHistoryId,
  String? usersId,
  String? userName,
  String? companyName,
  String? databaseName,
  String? url,
  String? applicationPool,
  String? errorMessage,
  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 WebApiModulesAdministratorCreateNewSystemHistoryCreateNewSystemHistory(
    createNewSystemHistoryId:
        createNewSystemHistoryId ?? this.createNewSystemHistoryId,
    usersId: usersId ?? this.usersId,
    userName: userName ?? this.userName,
    companyName: companyName ?? this.companyName,
    databaseName: databaseName ?? this.databaseName,
    url: url ?? this.url,
    applicationPool: applicationPool ?? this.applicationPool,
    errorMessage: errorMessage ?? this.errorMessage,
    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,
  );
}