copyWith method

FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic copyWith({
  1. int? webAuditId,
  2. String? moduleName,
  3. String? title,
  4. String? auditType,
  5. String? uniqueId1,
  6. String? uniqueId2,
  7. String? uniqueId3,
  8. String? webUserId,
  9. String? userId,
  10. String? userName,
  11. String? json,
  12. String? metaData1,
  13. String? metaData2,
  14. String? metaData3,
  15. String? dateStamp,
  16. String? auditNote,
  17. String? recordTitle,
  18. dynamic urlIdentifier,
  19. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  20. List<FwStandardDataFwCustomValue>? custom,
  21. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  22. FwStandardBusinessLogicFwBusinessLogic? original,
  23. List<FwStandardDataFwTranslatedValue>? translation,
  24. bool? hasImport,
  25. bool? hasDocuments,
  26. String? createdByUserId,
  27. String? createdByUserName,
  28. String? createdDateTime,
  29. String? modifiedByUserId,
  30. String? modifiedByUserName,
  31. String? modifiedDateTime,
})

Implementation

FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic copyWith({
  int? webAuditId,
  String? moduleName,
  String? title,
  String? auditType,
  String? uniqueId1,
  String? uniqueId2,
  String? uniqueId3,
  String? webUserId,
  String? userId,
  String? userName,
  String? json,
  String? metaData1,
  String? metaData2,
  String? metaData3,
  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 FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic(
    webAuditId: webAuditId ?? this.webAuditId,
    moduleName: moduleName ?? this.moduleName,
    title: title ?? this.title,
    auditType: auditType ?? this.auditType,
    uniqueId1: uniqueId1 ?? this.uniqueId1,
    uniqueId2: uniqueId2 ?? this.uniqueId2,
    uniqueId3: uniqueId3 ?? this.uniqueId3,
    webUserId: webUserId ?? this.webUserId,
    userId: userId ?? this.userId,
    userName: userName ?? this.userName,
    json: json ?? this.json,
    metaData1: metaData1 ?? this.metaData1,
    metaData2: metaData2 ?? this.metaData2,
    metaData3: metaData3 ?? this.metaData3,
    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,
  );
}