// 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 'loading_error.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** // dart format off T _$identity(T value) => value; /// @nodoc mixin _$LoadingError { String get message; bool get allowRetry; /// Create a copy of LoadingError /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $LoadingErrorCopyWith get copyWith => _$LoadingErrorCopyWithImpl(this as LoadingError, _$identity); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is LoadingError&&(identical(other.message, message) || other.message == message)&&(identical(other.allowRetry, allowRetry) || other.allowRetry == allowRetry)); } @override int get hashCode => Object.hash(runtimeType,message,allowRetry); @override String toString() { return 'LoadingError(message: $message, allowRetry: $allowRetry)'; } } /// @nodoc abstract mixin class $LoadingErrorCopyWith<$Res> { factory $LoadingErrorCopyWith(LoadingError value, $Res Function(LoadingError) _then) = _$LoadingErrorCopyWithImpl; @useResult $Res call({ String message, bool allowRetry }); } /// @nodoc class _$LoadingErrorCopyWithImpl<$Res> implements $LoadingErrorCopyWith<$Res> { _$LoadingErrorCopyWithImpl(this._self, this._then); final LoadingError _self; final $Res Function(LoadingError) _then; /// Create a copy of LoadingError /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? message = null,Object? allowRetry = null,}) { return _then(_self.copyWith( message: null == message ? _self.message : message // ignore: cast_nullable_to_non_nullable as String,allowRetry: null == allowRetry ? _self.allowRetry : allowRetry // ignore: cast_nullable_to_non_nullable as bool, )); } } /// Adds pattern-matching-related methods to [LoadingError]. extension LoadingErrorPatterns on LoadingError { /// 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( _LoadingError value)? $default,{required TResult orElse(),}){ final _that = this; switch (_that) { case _LoadingError() 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( _LoadingError value) $default,){ final _that = this; switch (_that) { case _LoadingError(): 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( _LoadingError value)? $default,){ final _that = this; switch (_that) { case _LoadingError() 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( String message, bool allowRetry)? $default,{required TResult orElse(),}) {final _that = this; switch (_that) { case _LoadingError() when $default != null: return $default(_that.message,_that.allowRetry);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( String message, bool allowRetry) $default,) {final _that = this; switch (_that) { case _LoadingError(): return $default(_that.message,_that.allowRetry);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( String message, bool allowRetry)? $default,) {final _that = this; switch (_that) { case _LoadingError() when $default != null: return $default(_that.message,_that.allowRetry);case _: return null; } } } /// @nodoc class _LoadingError implements LoadingError { const _LoadingError({required this.message, this.allowRetry = false}); @override final String message; @override@JsonKey() final bool allowRetry; /// Create a copy of LoadingError /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$LoadingErrorCopyWith<_LoadingError> get copyWith => __$LoadingErrorCopyWithImpl<_LoadingError>(this, _$identity); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _LoadingError&&(identical(other.message, message) || other.message == message)&&(identical(other.allowRetry, allowRetry) || other.allowRetry == allowRetry)); } @override int get hashCode => Object.hash(runtimeType,message,allowRetry); @override String toString() { return 'LoadingError(message: $message, allowRetry: $allowRetry)'; } } /// @nodoc abstract mixin class _$LoadingErrorCopyWith<$Res> implements $LoadingErrorCopyWith<$Res> { factory _$LoadingErrorCopyWith(_LoadingError value, $Res Function(_LoadingError) _then) = __$LoadingErrorCopyWithImpl; @override @useResult $Res call({ String message, bool allowRetry }); } /// @nodoc class __$LoadingErrorCopyWithImpl<$Res> implements _$LoadingErrorCopyWith<$Res> { __$LoadingErrorCopyWithImpl(this._self, this._then); final _LoadingError _self; final $Res Function(_LoadingError) _then; /// Create a copy of LoadingError /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? message = null,Object? allowRetry = null,}) { return _then(_LoadingError( message: null == message ? _self.message : message // ignore: cast_nullable_to_non_nullable as String,allowRetry: null == allowRetry ? _self.allowRetry : allowRetry // ignore: cast_nullable_to_non_nullable as bool, )); } } // dart format on