// GENERATED CODE - DO NOT MODIFY BY HAND // coverage:ignore-file // 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 'tender_model.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** // dart format off T _$identity(T value) => value; /// @nodoc mixin _$TenderModel { bool? get success; String? get message; TenderData? get data; ErrorModel? get error;@JsonKey(name: 'profile_match') double? get profileMatch; /// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $TenderModelCopyWith get copyWith => _$TenderModelCopyWithImpl(this as TenderModel, _$identity); /// Serializes this TenderModel to a JSON map. Map toJson(); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is TenderModel&&(identical(other.success, success) || other.success == success)&&(identical(other.message, message) || other.message == message)&&(identical(other.data, data) || other.data == data)&&(identical(other.error, error) || other.error == error)&&(identical(other.profileMatch, profileMatch) || other.profileMatch == profileMatch)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,success,message,data,error,profileMatch); @override String toString() { return 'TenderModel(success: $success, message: $message, data: $data, error: $error, profileMatch: $profileMatch)'; } } /// @nodoc abstract mixin class $TenderModelCopyWith<$Res> { factory $TenderModelCopyWith(TenderModel value, $Res Function(TenderModel) _then) = _$TenderModelCopyWithImpl; @useResult $Res call({ bool? success, String? message, TenderData? data, ErrorModel? error,@JsonKey(name: 'profile_match') double? profileMatch }); $TenderDataCopyWith<$Res>? get data;$ErrorModelCopyWith<$Res>? get error; } /// @nodoc class _$TenderModelCopyWithImpl<$Res> implements $TenderModelCopyWith<$Res> { _$TenderModelCopyWithImpl(this._self, this._then); final TenderModel _self; final $Res Function(TenderModel) _then; /// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? success = freezed,Object? message = freezed,Object? data = freezed,Object? error = freezed,Object? profileMatch = freezed,}) { return _then(_self.copyWith( success: freezed == success ? _self.success : success // ignore: cast_nullable_to_non_nullable as bool?,message: freezed == message ? _self.message : message // ignore: cast_nullable_to_non_nullable as String?,data: freezed == data ? _self.data : data // ignore: cast_nullable_to_non_nullable as TenderData?,error: freezed == error ? _self.error : error // ignore: cast_nullable_to_non_nullable as ErrorModel?,profileMatch: freezed == profileMatch ? _self.profileMatch : profileMatch // ignore: cast_nullable_to_non_nullable as double?, )); } /// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $TenderDataCopyWith<$Res>? get data { if (_self.data == null) { return null; } return $TenderDataCopyWith<$Res>(_self.data!, (value) { return _then(_self.copyWith(data: value)); }); }/// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $ErrorModelCopyWith<$Res>? get error { if (_self.error == null) { return null; } return $ErrorModelCopyWith<$Res>(_self.error!, (value) { return _then(_self.copyWith(error: value)); }); } } /// Adds pattern-matching-related methods to [TenderModel]. extension TenderModelPatterns on TenderModel { /// A variant of `map` that fallback to returning `orElse`. /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case final Subclass value: /// return ...; /// case _: /// return orElse(); /// } /// ``` @optionalTypeArgs TResult maybeMap(TResult Function( _TenderModel value)? $default,{required TResult orElse(),}){ final _that = this; switch (_that) { case _TenderModel() when $default != null: return $default(_that);case _: return orElse(); } } /// A `switch`-like method, using callbacks. /// /// Callbacks receives the raw object, upcasted. /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case final Subclass value: /// return ...; /// case final Subclass2 value: /// return ...; /// } /// ``` @optionalTypeArgs TResult map(TResult Function( _TenderModel value) $default,){ final _that = this; switch (_that) { case _TenderModel(): return $default(_that);case _: throw StateError('Unexpected subclass'); } } /// A variant of `map` that fallback to returning `null`. /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case final Subclass value: /// return ...; /// case _: /// return null; /// } /// ``` @optionalTypeArgs TResult? mapOrNull(TResult? Function( _TenderModel value)? $default,){ final _that = this; switch (_that) { case _TenderModel() when $default != null: return $default(_that);case _: return null; } } /// A variant of `when` that fallback to an `orElse` callback. /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case Subclass(:final field): /// return ...; /// case _: /// return orElse(); /// } /// ``` @optionalTypeArgs TResult maybeWhen(TResult Function( bool? success, String? message, TenderData? data, ErrorModel? error, @JsonKey(name: 'profile_match') double? profileMatch)? $default,{required TResult orElse(),}) {final _that = this; switch (_that) { case _TenderModel() when $default != null: return $default(_that.success,_that.message,_that.data,_that.error,_that.profileMatch);case _: return orElse(); } } /// A `switch`-like method, using callbacks. /// /// As opposed to `map`, this offers destructuring. /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case Subclass(:final field): /// return ...; /// case Subclass2(:final field2): /// return ...; /// } /// ``` @optionalTypeArgs TResult when(TResult Function( bool? success, String? message, TenderData? data, ErrorModel? error, @JsonKey(name: 'profile_match') double? profileMatch) $default,) {final _that = this; switch (_that) { case _TenderModel(): return $default(_that.success,_that.message,_that.data,_that.error,_that.profileMatch);case _: throw StateError('Unexpected subclass'); } } /// A variant of `when` that fallback to returning `null` /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case Subclass(:final field): /// return ...; /// case _: /// return null; /// } /// ``` @optionalTypeArgs TResult? whenOrNull(TResult? Function( bool? success, String? message, TenderData? data, ErrorModel? error, @JsonKey(name: 'profile_match') double? profileMatch)? $default,) {final _that = this; switch (_that) { case _TenderModel() when $default != null: return $default(_that.success,_that.message,_that.data,_that.error,_that.profileMatch);case _: return null; } } } /// @nodoc @JsonSerializable() class _TenderModel implements TenderModel { const _TenderModel({required this.success, required this.message, required this.data, required this.error, @JsonKey(name: 'profile_match') required this.profileMatch}); factory _TenderModel.fromJson(Map json) => _$TenderModelFromJson(json); @override final bool? success; @override final String? message; @override final TenderData? data; @override final ErrorModel? error; @override@JsonKey(name: 'profile_match') final double? profileMatch; /// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$TenderModelCopyWith<_TenderModel> get copyWith => __$TenderModelCopyWithImpl<_TenderModel>(this, _$identity); @override Map toJson() { return _$TenderModelToJson(this, ); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _TenderModel&&(identical(other.success, success) || other.success == success)&&(identical(other.message, message) || other.message == message)&&(identical(other.data, data) || other.data == data)&&(identical(other.error, error) || other.error == error)&&(identical(other.profileMatch, profileMatch) || other.profileMatch == profileMatch)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,success,message,data,error,profileMatch); @override String toString() { return 'TenderModel(success: $success, message: $message, data: $data, error: $error, profileMatch: $profileMatch)'; } } /// @nodoc abstract mixin class _$TenderModelCopyWith<$Res> implements $TenderModelCopyWith<$Res> { factory _$TenderModelCopyWith(_TenderModel value, $Res Function(_TenderModel) _then) = __$TenderModelCopyWithImpl; @override @useResult $Res call({ bool? success, String? message, TenderData? data, ErrorModel? error,@JsonKey(name: 'profile_match') double? profileMatch }); @override $TenderDataCopyWith<$Res>? get data;@override $ErrorModelCopyWith<$Res>? get error; } /// @nodoc class __$TenderModelCopyWithImpl<$Res> implements _$TenderModelCopyWith<$Res> { __$TenderModelCopyWithImpl(this._self, this._then); final _TenderModel _self; final $Res Function(_TenderModel) _then; /// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? success = freezed,Object? message = freezed,Object? data = freezed,Object? error = freezed,Object? profileMatch = freezed,}) { return _then(_TenderModel( success: freezed == success ? _self.success : success // ignore: cast_nullable_to_non_nullable as bool?,message: freezed == message ? _self.message : message // ignore: cast_nullable_to_non_nullable as String?,data: freezed == data ? _self.data : data // ignore: cast_nullable_to_non_nullable as TenderData?,error: freezed == error ? _self.error : error // ignore: cast_nullable_to_non_nullable as ErrorModel?,profileMatch: freezed == profileMatch ? _self.profileMatch : profileMatch // ignore: cast_nullable_to_non_nullable as double?, )); } /// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $TenderDataCopyWith<$Res>? get data { if (_self.data == null) { return null; } return $TenderDataCopyWith<$Res>(_self.data!, (value) { return _then(_self.copyWith(data: value)); }); }/// Create a copy of TenderModel /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $ErrorModelCopyWith<$Res>? get error { if (_self.error == null) { return null; } return $ErrorModelCopyWith<$Res>(_self.error!, (value) { return _then(_self.copyWith(error: value)); }); } } // dart format on