// coverage:ignore-file // GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint // ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark part of 'recent_activity.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); RecentActivity _$RecentActivityFromJson(Map json) { return _RecentActivity.fromJson(json); } /// @nodoc mixin _$RecentActivity { int get id => throw _privateConstructorUsedError; @JsonKey(name: 'activity_type') String get activityType => throw _privateConstructorUsedError; @JsonKey(name: 'entity_type') String get entityType => throw _privateConstructorUsedError; @JsonKey(name: 'entity_id') int get entityId => throw _privateConstructorUsedError; @JsonKey(name: 'entity_name') String get entityName => throw _privateConstructorUsedError; String get description => throw _privateConstructorUsedError; @JsonKey(name: 'user_id') int? get userId => throw _privateConstructorUsedError; @JsonKey(name: 'user_name') String? get userName => throw _privateConstructorUsedError; DateTime get timestamp => throw _privateConstructorUsedError; Map? get metadata => throw _privateConstructorUsedError; /// Serializes this RecentActivity to a JSON map. Map toJson() => throw _privateConstructorUsedError; /// Create a copy of RecentActivity /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $RecentActivityCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $RecentActivityCopyWith<$Res> { factory $RecentActivityCopyWith( RecentActivity value, $Res Function(RecentActivity) then) = _$RecentActivityCopyWithImpl<$Res, RecentActivity>; @useResult $Res call( {int id, @JsonKey(name: 'activity_type') String activityType, @JsonKey(name: 'entity_type') String entityType, @JsonKey(name: 'entity_id') int entityId, @JsonKey(name: 'entity_name') String entityName, String description, @JsonKey(name: 'user_id') int? userId, @JsonKey(name: 'user_name') String? userName, DateTime timestamp, Map? metadata}); } /// @nodoc class _$RecentActivityCopyWithImpl<$Res, $Val extends RecentActivity> implements $RecentActivityCopyWith<$Res> { _$RecentActivityCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of RecentActivity /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? activityType = null, Object? entityType = null, Object? entityId = null, Object? entityName = null, Object? description = null, Object? userId = freezed, Object? userName = freezed, Object? timestamp = null, Object? metadata = freezed, }) { return _then(_value.copyWith( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as int, activityType: null == activityType ? _value.activityType : activityType // ignore: cast_nullable_to_non_nullable as String, entityType: null == entityType ? _value.entityType : entityType // ignore: cast_nullable_to_non_nullable as String, entityId: null == entityId ? _value.entityId : entityId // ignore: cast_nullable_to_non_nullable as int, entityName: null == entityName ? _value.entityName : entityName // ignore: cast_nullable_to_non_nullable as String, description: null == description ? _value.description : description // ignore: cast_nullable_to_non_nullable as String, userId: freezed == userId ? _value.userId : userId // ignore: cast_nullable_to_non_nullable as int?, userName: freezed == userName ? _value.userName : userName // ignore: cast_nullable_to_non_nullable as String?, timestamp: null == timestamp ? _value.timestamp : timestamp // ignore: cast_nullable_to_non_nullable as DateTime, metadata: freezed == metadata ? _value.metadata : metadata // ignore: cast_nullable_to_non_nullable as Map?, ) as $Val); } } /// @nodoc abstract class _$$RecentActivityImplCopyWith<$Res> implements $RecentActivityCopyWith<$Res> { factory _$$RecentActivityImplCopyWith(_$RecentActivityImpl value, $Res Function(_$RecentActivityImpl) then) = __$$RecentActivityImplCopyWithImpl<$Res>; @override @useResult $Res call( {int id, @JsonKey(name: 'activity_type') String activityType, @JsonKey(name: 'entity_type') String entityType, @JsonKey(name: 'entity_id') int entityId, @JsonKey(name: 'entity_name') String entityName, String description, @JsonKey(name: 'user_id') int? userId, @JsonKey(name: 'user_name') String? userName, DateTime timestamp, Map? metadata}); } /// @nodoc class __$$RecentActivityImplCopyWithImpl<$Res> extends _$RecentActivityCopyWithImpl<$Res, _$RecentActivityImpl> implements _$$RecentActivityImplCopyWith<$Res> { __$$RecentActivityImplCopyWithImpl( _$RecentActivityImpl _value, $Res Function(_$RecentActivityImpl) _then) : super(_value, _then); /// Create a copy of RecentActivity /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? activityType = null, Object? entityType = null, Object? entityId = null, Object? entityName = null, Object? description = null, Object? userId = freezed, Object? userName = freezed, Object? timestamp = null, Object? metadata = freezed, }) { return _then(_$RecentActivityImpl( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as int, activityType: null == activityType ? _value.activityType : activityType // ignore: cast_nullable_to_non_nullable as String, entityType: null == entityType ? _value.entityType : entityType // ignore: cast_nullable_to_non_nullable as String, entityId: null == entityId ? _value.entityId : entityId // ignore: cast_nullable_to_non_nullable as int, entityName: null == entityName ? _value.entityName : entityName // ignore: cast_nullable_to_non_nullable as String, description: null == description ? _value.description : description // ignore: cast_nullable_to_non_nullable as String, userId: freezed == userId ? _value.userId : userId // ignore: cast_nullable_to_non_nullable as int?, userName: freezed == userName ? _value.userName : userName // ignore: cast_nullable_to_non_nullable as String?, timestamp: null == timestamp ? _value.timestamp : timestamp // ignore: cast_nullable_to_non_nullable as DateTime, metadata: freezed == metadata ? _value._metadata : metadata // ignore: cast_nullable_to_non_nullable as Map?, )); } } /// @nodoc @JsonSerializable() class _$RecentActivityImpl implements _RecentActivity { const _$RecentActivityImpl( {required this.id, @JsonKey(name: 'activity_type') required this.activityType, @JsonKey(name: 'entity_type') required this.entityType, @JsonKey(name: 'entity_id') required this.entityId, @JsonKey(name: 'entity_name') required this.entityName, required this.description, @JsonKey(name: 'user_id') this.userId, @JsonKey(name: 'user_name') this.userName, required this.timestamp, final Map? metadata}) : _metadata = metadata; factory _$RecentActivityImpl.fromJson(Map json) => _$$RecentActivityImplFromJson(json); @override final int id; @override @JsonKey(name: 'activity_type') final String activityType; @override @JsonKey(name: 'entity_type') final String entityType; @override @JsonKey(name: 'entity_id') final int entityId; @override @JsonKey(name: 'entity_name') final String entityName; @override final String description; @override @JsonKey(name: 'user_id') final int? userId; @override @JsonKey(name: 'user_name') final String? userName; @override final DateTime timestamp; final Map? _metadata; @override Map? get metadata { final value = _metadata; if (value == null) return null; if (_metadata is EqualUnmodifiableMapView) return _metadata; // ignore: implicit_dynamic_type return EqualUnmodifiableMapView(value); } @override String toString() { return 'RecentActivity(id: $id, activityType: $activityType, entityType: $entityType, entityId: $entityId, entityName: $entityName, description: $description, userId: $userId, userName: $userName, timestamp: $timestamp, metadata: $metadata)'; } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$RecentActivityImpl && (identical(other.id, id) || other.id == id) && (identical(other.activityType, activityType) || other.activityType == activityType) && (identical(other.entityType, entityType) || other.entityType == entityType) && (identical(other.entityId, entityId) || other.entityId == entityId) && (identical(other.entityName, entityName) || other.entityName == entityName) && (identical(other.description, description) || other.description == description) && (identical(other.userId, userId) || other.userId == userId) && (identical(other.userName, userName) || other.userName == userName) && (identical(other.timestamp, timestamp) || other.timestamp == timestamp) && const DeepCollectionEquality().equals(other._metadata, _metadata)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash( runtimeType, id, activityType, entityType, entityId, entityName, description, userId, userName, timestamp, const DeepCollectionEquality().hash(_metadata)); /// Create a copy of RecentActivity /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$RecentActivityImplCopyWith<_$RecentActivityImpl> get copyWith => __$$RecentActivityImplCopyWithImpl<_$RecentActivityImpl>( this, _$identity); @override Map toJson() { return _$$RecentActivityImplToJson( this, ); } } abstract class _RecentActivity implements RecentActivity { const factory _RecentActivity( {required final int id, @JsonKey(name: 'activity_type') required final String activityType, @JsonKey(name: 'entity_type') required final String entityType, @JsonKey(name: 'entity_id') required final int entityId, @JsonKey(name: 'entity_name') required final String entityName, required final String description, @JsonKey(name: 'user_id') final int? userId, @JsonKey(name: 'user_name') final String? userName, required final DateTime timestamp, final Map? metadata}) = _$RecentActivityImpl; factory _RecentActivity.fromJson(Map json) = _$RecentActivityImpl.fromJson; @override int get id; @override @JsonKey(name: 'activity_type') String get activityType; @override @JsonKey(name: 'entity_type') String get entityType; @override @JsonKey(name: 'entity_id') int get entityId; @override @JsonKey(name: 'entity_name') String get entityName; @override String get description; @override @JsonKey(name: 'user_id') int? get userId; @override @JsonKey(name: 'user_name') String? get userName; @override DateTime get timestamp; @override Map? get metadata; /// Create a copy of RecentActivity /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$RecentActivityImplCopyWith<_$RecentActivityImpl> get copyWith => throw _privateConstructorUsedError; }