// 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 'confirm_controller.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** // dart format off T _$identity(T value) => value; /// @nodoc mixin _$ConfirmData implements DiagnosticableTreeMixin { String get status; String get errorMessage; /// Create a copy of ConfirmData /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $ConfirmDataCopyWith get copyWith => _$ConfirmDataCopyWithImpl(this as ConfirmData, _$identity); /// Serializes this ConfirmData to a JSON map. Map toJson(); @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { properties ..add(DiagnosticsProperty('type', 'ConfirmData')) ..add(DiagnosticsProperty('status', status))..add(DiagnosticsProperty('errorMessage', errorMessage)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is ConfirmData&&(identical(other.status, status) || other.status == status)&&(identical(other.errorMessage, errorMessage) || other.errorMessage == errorMessage)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,status,errorMessage); @override String toString({ DiagnosticLevel minLevel = DiagnosticLevel.info }) { return 'ConfirmData(status: $status, errorMessage: $errorMessage)'; } } /// @nodoc abstract mixin class $ConfirmDataCopyWith<$Res> { factory $ConfirmDataCopyWith(ConfirmData value, $Res Function(ConfirmData) _then) = _$ConfirmDataCopyWithImpl; @useResult $Res call({ String status, String errorMessage }); } /// @nodoc class _$ConfirmDataCopyWithImpl<$Res> implements $ConfirmDataCopyWith<$Res> { _$ConfirmDataCopyWithImpl(this._self, this._then); final ConfirmData _self; final $Res Function(ConfirmData) _then; /// Create a copy of ConfirmData /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? status = null,Object? errorMessage = null,}) { return _then(_self.copyWith( status: null == status ? _self.status : status // ignore: cast_nullable_to_non_nullable as String,errorMessage: null == errorMessage ? _self.errorMessage : errorMessage // ignore: cast_nullable_to_non_nullable as String, )); } } /// Adds pattern-matching-related methods to [ConfirmData]. extension ConfirmDataPatterns on ConfirmData { /// 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( _ConfirmData value)? $default,{required TResult orElse(),}){ final _that = this; switch (_that) { case _ConfirmData() 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( _ConfirmData value) $default,){ final _that = this; switch (_that) { case _ConfirmData(): 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( _ConfirmData value)? $default,){ final _that = this; switch (_that) { case _ConfirmData() 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 status, String errorMessage)? $default,{required TResult orElse(),}) {final _that = this; switch (_that) { case _ConfirmData() when $default != null: return $default(_that.status,_that.errorMessage);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 status, String errorMessage) $default,) {final _that = this; switch (_that) { case _ConfirmData(): return $default(_that.status,_that.errorMessage);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 status, String errorMessage)? $default,) {final _that = this; switch (_that) { case _ConfirmData() when $default != null: return $default(_that.status,_that.errorMessage);case _: return null; } } } /// @nodoc @JsonSerializable() class _ConfirmData with DiagnosticableTreeMixin implements ConfirmData { const _ConfirmData({required this.status, required this.errorMessage}); factory _ConfirmData.fromJson(Map json) => _$ConfirmDataFromJson(json); @override final String status; @override final String errorMessage; /// Create a copy of ConfirmData /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$ConfirmDataCopyWith<_ConfirmData> get copyWith => __$ConfirmDataCopyWithImpl<_ConfirmData>(this, _$identity); @override Map toJson() { return _$ConfirmDataToJson(this, ); } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { properties ..add(DiagnosticsProperty('type', 'ConfirmData')) ..add(DiagnosticsProperty('status', status))..add(DiagnosticsProperty('errorMessage', errorMessage)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _ConfirmData&&(identical(other.status, status) || other.status == status)&&(identical(other.errorMessage, errorMessage) || other.errorMessage == errorMessage)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,status,errorMessage); @override String toString({ DiagnosticLevel minLevel = DiagnosticLevel.info }) { return 'ConfirmData(status: $status, errorMessage: $errorMessage)'; } } /// @nodoc abstract mixin class _$ConfirmDataCopyWith<$Res> implements $ConfirmDataCopyWith<$Res> { factory _$ConfirmDataCopyWith(_ConfirmData value, $Res Function(_ConfirmData) _then) = __$ConfirmDataCopyWithImpl; @override @useResult $Res call({ String status, String errorMessage }); } /// @nodoc class __$ConfirmDataCopyWithImpl<$Res> implements _$ConfirmDataCopyWith<$Res> { __$ConfirmDataCopyWithImpl(this._self, this._then); final _ConfirmData _self; final $Res Function(_ConfirmData) _then; /// Create a copy of ConfirmData /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? status = null,Object? errorMessage = null,}) { return _then(_ConfirmData( status: null == status ? _self.status : status // ignore: cast_nullable_to_non_nullable as String,errorMessage: null == errorMessage ? _self.errorMessage : errorMessage // ignore: cast_nullable_to_non_nullable as String, )); } } // dart format on