Files
velocity-pay-flutter/lib/screens/confirm/confirm_controller.freezed.dart
2025-07-14 01:04:53 +02:00

152 lines
4.8 KiB
Dart

// dart format width=80
// 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 'confirm_controller.dart';
// **************************************************************************
// FreezedGenerator
// **************************************************************************
// dart format off
T _$identity<T>(T value) => value;
/// @nodoc
mixin _$ConfirmData {
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<ConfirmData> get copyWith => _$ConfirmDataCopyWithImpl<ConfirmData>(this as ConfirmData, _$identity);
/// Serializes this ConfirmData to a JSON map.
Map<String, dynamic> toJson();
@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() {
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,
));
}
}
/// @nodoc
@JsonSerializable()
class _ConfirmData implements ConfirmData {
const _ConfirmData({required this.status, required this.errorMessage});
factory _ConfirmData.fromJson(Map<String, dynamic> 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<String, dynamic> toJson() {
return _$ConfirmDataToJson(this, );
}
@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() {
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