// 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 'http_request_model.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', ); HttpRequestModel _$HttpRequestModelFromJson(Map json) { return _HttpRequestModel.fromJson(json); } /// @nodoc mixin _$HttpRequestModel { HTTPVerb get method => throw _privateConstructorUsedError; String get url => throw _privateConstructorUsedError; List? get headers => throw _privateConstructorUsedError; List? get params => throw _privateConstructorUsedError; AuthModel? get authModel => throw _privateConstructorUsedError; List? get isHeaderEnabledList => throw _privateConstructorUsedError; List? get isParamEnabledList => throw _privateConstructorUsedError; ContentType get bodyContentType => throw _privateConstructorUsedError; String? get body => throw _privateConstructorUsedError; String? get query => throw _privateConstructorUsedError; List? get formData => throw _privateConstructorUsedError; /// Serializes this HttpRequestModel to a JSON map. Map toJson() => throw _privateConstructorUsedError; /// Create a copy of HttpRequestModel /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $HttpRequestModelCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $HttpRequestModelCopyWith<$Res> { factory $HttpRequestModelCopyWith( HttpRequestModel value, $Res Function(HttpRequestModel) then, ) = _$HttpRequestModelCopyWithImpl<$Res, HttpRequestModel>; @useResult $Res call({ HTTPVerb method, String url, List? headers, List? params, AuthModel? authModel, List? isHeaderEnabledList, List? isParamEnabledList, ContentType bodyContentType, String? body, String? query, List? formData, }); $AuthModelCopyWith<$Res>? get authModel; } /// @nodoc class _$HttpRequestModelCopyWithImpl<$Res, $Val extends HttpRequestModel> implements $HttpRequestModelCopyWith<$Res> { _$HttpRequestModelCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of HttpRequestModel /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? method = null, Object? url = null, Object? headers = freezed, Object? params = freezed, Object? authModel = freezed, Object? isHeaderEnabledList = freezed, Object? isParamEnabledList = freezed, Object? bodyContentType = null, Object? body = freezed, Object? query = freezed, Object? formData = freezed, }) { return _then( _value.copyWith( method: null == method ? _value.method : method // ignore: cast_nullable_to_non_nullable as HTTPVerb, url: null == url ? _value.url : url // ignore: cast_nullable_to_non_nullable as String, headers: freezed == headers ? _value.headers : headers // ignore: cast_nullable_to_non_nullable as List?, params: freezed == params ? _value.params : params // ignore: cast_nullable_to_non_nullable as List?, authModel: freezed == authModel ? _value.authModel : authModel // ignore: cast_nullable_to_non_nullable as AuthModel?, isHeaderEnabledList: freezed == isHeaderEnabledList ? _value.isHeaderEnabledList : isHeaderEnabledList // ignore: cast_nullable_to_non_nullable as List?, isParamEnabledList: freezed == isParamEnabledList ? _value.isParamEnabledList : isParamEnabledList // ignore: cast_nullable_to_non_nullable as List?, bodyContentType: null == bodyContentType ? _value.bodyContentType : bodyContentType // ignore: cast_nullable_to_non_nullable as ContentType, body: freezed == body ? _value.body : body // ignore: cast_nullable_to_non_nullable as String?, query: freezed == query ? _value.query : query // ignore: cast_nullable_to_non_nullable as String?, formData: freezed == formData ? _value.formData : formData // ignore: cast_nullable_to_non_nullable as List?, ) as $Val, ); } /// Create a copy of HttpRequestModel /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $AuthModelCopyWith<$Res>? get authModel { if (_value.authModel == null) { return null; } return $AuthModelCopyWith<$Res>(_value.authModel!, (value) { return _then(_value.copyWith(authModel: value) as $Val); }); } } /// @nodoc abstract class _$$HttpRequestModelImplCopyWith<$Res> implements $HttpRequestModelCopyWith<$Res> { factory _$$HttpRequestModelImplCopyWith( _$HttpRequestModelImpl value, $Res Function(_$HttpRequestModelImpl) then, ) = __$$HttpRequestModelImplCopyWithImpl<$Res>; @override @useResult $Res call({ HTTPVerb method, String url, List? headers, List? params, AuthModel? authModel, List? isHeaderEnabledList, List? isParamEnabledList, ContentType bodyContentType, String? body, String? query, List? formData, }); @override $AuthModelCopyWith<$Res>? get authModel; } /// @nodoc class __$$HttpRequestModelImplCopyWithImpl<$Res> extends _$HttpRequestModelCopyWithImpl<$Res, _$HttpRequestModelImpl> implements _$$HttpRequestModelImplCopyWith<$Res> { __$$HttpRequestModelImplCopyWithImpl( _$HttpRequestModelImpl _value, $Res Function(_$HttpRequestModelImpl) _then, ) : super(_value, _then); /// Create a copy of HttpRequestModel /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? method = null, Object? url = null, Object? headers = freezed, Object? params = freezed, Object? authModel = freezed, Object? isHeaderEnabledList = freezed, Object? isParamEnabledList = freezed, Object? bodyContentType = null, Object? body = freezed, Object? query = freezed, Object? formData = freezed, }) { return _then( _$HttpRequestModelImpl( method: null == method ? _value.method : method // ignore: cast_nullable_to_non_nullable as HTTPVerb, url: null == url ? _value.url : url // ignore: cast_nullable_to_non_nullable as String, headers: freezed == headers ? _value._headers : headers // ignore: cast_nullable_to_non_nullable as List?, params: freezed == params ? _value._params : params // ignore: cast_nullable_to_non_nullable as List?, authModel: freezed == authModel ? _value.authModel : authModel // ignore: cast_nullable_to_non_nullable as AuthModel?, isHeaderEnabledList: freezed == isHeaderEnabledList ? _value._isHeaderEnabledList : isHeaderEnabledList // ignore: cast_nullable_to_non_nullable as List?, isParamEnabledList: freezed == isParamEnabledList ? _value._isParamEnabledList : isParamEnabledList // ignore: cast_nullable_to_non_nullable as List?, bodyContentType: null == bodyContentType ? _value.bodyContentType : bodyContentType // ignore: cast_nullable_to_non_nullable as ContentType, body: freezed == body ? _value.body : body // ignore: cast_nullable_to_non_nullable as String?, query: freezed == query ? _value.query : query // ignore: cast_nullable_to_non_nullable as String?, formData: freezed == formData ? _value._formData : formData // ignore: cast_nullable_to_non_nullable as List?, ), ); } } /// @nodoc @JsonSerializable(explicitToJson: true, anyMap: true) class _$HttpRequestModelImpl extends _HttpRequestModel { const _$HttpRequestModelImpl({ this.method = HTTPVerb.get, this.url = "", final List? headers, final List? params, this.authModel = const AuthModel(type: APIAuthType.none), final List? isHeaderEnabledList, final List? isParamEnabledList, this.bodyContentType = ContentType.json, this.body, this.query, final List? formData, }) : _headers = headers, _params = params, _isHeaderEnabledList = isHeaderEnabledList, _isParamEnabledList = isParamEnabledList, _formData = formData, super._(); factory _$HttpRequestModelImpl.fromJson(Map json) => _$$HttpRequestModelImplFromJson(json); @override @JsonKey() final HTTPVerb method; @override @JsonKey() final String url; final List? _headers; @override List? get headers { final value = _headers; if (value == null) return null; if (_headers is EqualUnmodifiableListView) return _headers; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(value); } final List? _params; @override List? get params { final value = _params; if (value == null) return null; if (_params is EqualUnmodifiableListView) return _params; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(value); } @override @JsonKey() final AuthModel? authModel; final List? _isHeaderEnabledList; @override List? get isHeaderEnabledList { final value = _isHeaderEnabledList; if (value == null) return null; if (_isHeaderEnabledList is EqualUnmodifiableListView) return _isHeaderEnabledList; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(value); } final List? _isParamEnabledList; @override List? get isParamEnabledList { final value = _isParamEnabledList; if (value == null) return null; if (_isParamEnabledList is EqualUnmodifiableListView) return _isParamEnabledList; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(value); } @override @JsonKey() final ContentType bodyContentType; @override final String? body; @override final String? query; final List? _formData; @override List? get formData { final value = _formData; if (value == null) return null; if (_formData is EqualUnmodifiableListView) return _formData; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(value); } @override String toString() { return 'HttpRequestModel(method: $method, url: $url, headers: $headers, params: $params, authModel: $authModel, isHeaderEnabledList: $isHeaderEnabledList, isParamEnabledList: $isParamEnabledList, bodyContentType: $bodyContentType, body: $body, query: $query, formData: $formData)'; } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$HttpRequestModelImpl && (identical(other.method, method) || other.method == method) && (identical(other.url, url) || other.url == url) && const DeepCollectionEquality().equals(other._headers, _headers) && const DeepCollectionEquality().equals(other._params, _params) && (identical(other.authModel, authModel) || other.authModel == authModel) && const DeepCollectionEquality().equals( other._isHeaderEnabledList, _isHeaderEnabledList, ) && const DeepCollectionEquality().equals( other._isParamEnabledList, _isParamEnabledList, ) && (identical(other.bodyContentType, bodyContentType) || other.bodyContentType == bodyContentType) && (identical(other.body, body) || other.body == body) && (identical(other.query, query) || other.query == query) && const DeepCollectionEquality().equals(other._formData, _formData)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash( runtimeType, method, url, const DeepCollectionEquality().hash(_headers), const DeepCollectionEquality().hash(_params), authModel, const DeepCollectionEquality().hash(_isHeaderEnabledList), const DeepCollectionEquality().hash(_isParamEnabledList), bodyContentType, body, query, const DeepCollectionEquality().hash(_formData), ); /// Create a copy of HttpRequestModel /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$HttpRequestModelImplCopyWith<_$HttpRequestModelImpl> get copyWith => __$$HttpRequestModelImplCopyWithImpl<_$HttpRequestModelImpl>( this, _$identity, ); @override Map toJson() { return _$$HttpRequestModelImplToJson(this); } } abstract class _HttpRequestModel extends HttpRequestModel { const factory _HttpRequestModel({ final HTTPVerb method, final String url, final List? headers, final List? params, final AuthModel? authModel, final List? isHeaderEnabledList, final List? isParamEnabledList, final ContentType bodyContentType, final String? body, final String? query, final List? formData, }) = _$HttpRequestModelImpl; const _HttpRequestModel._() : super._(); factory _HttpRequestModel.fromJson(Map json) = _$HttpRequestModelImpl.fromJson; @override HTTPVerb get method; @override String get url; @override List? get headers; @override List? get params; @override AuthModel? get authModel; @override List? get isHeaderEnabledList; @override List? get isParamEnabledList; @override ContentType get bodyContentType; @override String? get body; @override String? get query; @override List? get formData; /// Create a copy of HttpRequestModel /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$HttpRequestModelImplCopyWith<_$HttpRequestModelImpl> get copyWith => throw _privateConstructorUsedError; }