copyWith method

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

Implementation

WebApiModulesLanguageLanguageLanguage copyWith({
  String? languageId,
  String? language,
  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 WebApiModulesLanguageLanguageLanguage(
    languageId: languageId ?? this.languageId,
    language: language ?? this.language,
    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,
  );
}