copyWith method

FwStandardModulesAdministratorAlertWebUsersAlertWebUsersLogic copyWith({
  1. String? alertWebUserId,
  2. String? alertId,
  3. String? description,
  4. String? webUserId,
  5. String? userId,
  6. String? userName,
  7. String? email,
  8. String? dateStamp,
  9. String? auditNote,
  10. String? recordTitle,
  11. dynamic urlIdentifier,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. FwStandardBusinessLogicFwBusinessLogic? original,
  16. List<FwStandardDataFwTranslatedValue>? translation,
  17. bool? hasImport,
  18. String? createdByUserId,
  19. String? createdByUserName,
  20. String? createdDateTime,
  21. String? modifiedByUserId,
  22. String? modifiedByUserName,
  23. String? modifiedDateTime,
})

Implementation

FwStandardModulesAdministratorAlertWebUsersAlertWebUsersLogic copyWith({
  String? alertWebUserId,
  String? alertId,
  String? description,
  String? webUserId,
  String? userId,
  String? userName,
  String? email,
  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 FwStandardModulesAdministratorAlertWebUsersAlertWebUsersLogic(
    alertWebUserId: alertWebUserId ?? this.alertWebUserId,
    alertId: alertId ?? this.alertId,
    description: description ?? this.description,
    webUserId: webUserId ?? this.webUserId,
    userId: userId ?? this.userId,
    userName: userName ?? this.userName,
    email: email ?? this.email,
    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,
  );
}