// 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 'rmv_state.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** // dart format off T _$identity(T value) => value; /// @nodoc mixin _$RmvState { List get disruptions; /// Create a copy of RmvState /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $RmvStateCopyWith get copyWith => _$RmvStateCopyWithImpl(this as RmvState, _$identity); /// Serializes this RmvState to a JSON map. Map toJson(); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is RmvState&&const DeepCollectionEquality().equals(other.disruptions, disruptions)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,const DeepCollectionEquality().hash(disruptions)); @override String toString() { return 'RmvState(disruptions: $disruptions)'; } } /// @nodoc abstract mixin class $RmvStateCopyWith<$Res> { factory $RmvStateCopyWith(RmvState value, $Res Function(RmvState) _then) = _$RmvStateCopyWithImpl; @useResult $Res call({ List disruptions }); } /// @nodoc class _$RmvStateCopyWithImpl<$Res> implements $RmvStateCopyWith<$Res> { _$RmvStateCopyWithImpl(this._self, this._then); final RmvState _self; final $Res Function(RmvState) _then; /// Create a copy of RmvState /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? disruptions = null,}) { return _then(_self.copyWith( disruptions: null == disruptions ? _self.disruptions : disruptions // ignore: cast_nullable_to_non_nullable as List, )); } } /// Adds pattern-matching-related methods to [RmvState]. extension RmvStatePatterns on RmvState { /// 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( _RmvState value)? $default,{required TResult orElse(),}){ final _that = this; switch (_that) { case _RmvState() 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( _RmvState value) $default,){ final _that = this; switch (_that) { case _RmvState(): 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( _RmvState value)? $default,){ final _that = this; switch (_that) { case _RmvState() 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( List disruptions)? $default,{required TResult orElse(),}) {final _that = this; switch (_that) { case _RmvState() when $default != null: return $default(_that.disruptions);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( List disruptions) $default,) {final _that = this; switch (_that) { case _RmvState(): return $default(_that.disruptions);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( List disruptions)? $default,) {final _that = this; switch (_that) { case _RmvState() when $default != null: return $default(_that.disruptions);case _: return null; } } } /// @nodoc @JsonSerializable() class _RmvState implements RmvState { const _RmvState({final List disruptions = const []}): _disruptions = disruptions; factory _RmvState.fromJson(Map json) => _$RmvStateFromJson(json); final List _disruptions; @override@JsonKey() List get disruptions { if (_disruptions is EqualUnmodifiableListView) return _disruptions; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(_disruptions); } /// Create a copy of RmvState /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$RmvStateCopyWith<_RmvState> get copyWith => __$RmvStateCopyWithImpl<_RmvState>(this, _$identity); @override Map toJson() { return _$RmvStateToJson(this, ); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _RmvState&&const DeepCollectionEquality().equals(other._disruptions, _disruptions)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,const DeepCollectionEquality().hash(_disruptions)); @override String toString() { return 'RmvState(disruptions: $disruptions)'; } } /// @nodoc abstract mixin class _$RmvStateCopyWith<$Res> implements $RmvStateCopyWith<$Res> { factory _$RmvStateCopyWith(_RmvState value, $Res Function(_RmvState) _then) = __$RmvStateCopyWithImpl; @override @useResult $Res call({ List disruptions }); } /// @nodoc class __$RmvStateCopyWithImpl<$Res> implements _$RmvStateCopyWith<$Res> { __$RmvStateCopyWithImpl(this._self, this._then); final _RmvState _self; final $Res Function(_RmvState) _then; /// Create a copy of RmvState /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? disruptions = null,}) { return _then(_RmvState( disruptions: null == disruptions ? _self._disruptions : disruptions // ignore: cast_nullable_to_non_nullable as List, )); } } // dart format on