Files
superport/lib/data/models/auth/message_response.freezed.dart
JiWoong Sul c419f8f458 backup: 사용하지 않는 파일 삭제 전 복구 지점
- 전체 371개 파일 중 82개 미사용 파일 식별
- Phase 1: 33개 파일 삭제 예정 (100% 안전)
- Phase 2: 30개 파일 삭제 검토 예정
- Phase 3: 19개 파일 수동 검토 예정

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-02 19:51:40 +09:00

167 lines
5.4 KiB
Dart

// 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 'message_response.dart';
// **************************************************************************
// FreezedGenerator
// **************************************************************************
T _$identity<T>(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');
MessageResponse _$MessageResponseFromJson(Map<String, dynamic> json) {
return _MessageResponse.fromJson(json);
}
/// @nodoc
mixin _$MessageResponse {
String get message => throw _privateConstructorUsedError;
/// Serializes this MessageResponse to a JSON map.
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
/// Create a copy of MessageResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
$MessageResponseCopyWith<MessageResponse> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $MessageResponseCopyWith<$Res> {
factory $MessageResponseCopyWith(
MessageResponse value, $Res Function(MessageResponse) then) =
_$MessageResponseCopyWithImpl<$Res, MessageResponse>;
@useResult
$Res call({String message});
}
/// @nodoc
class _$MessageResponseCopyWithImpl<$Res, $Val extends MessageResponse>
implements $MessageResponseCopyWith<$Res> {
_$MessageResponseCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
/// Create a copy of MessageResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? message = null,
}) {
return _then(_value.copyWith(
message: null == message
? _value.message
: message // ignore: cast_nullable_to_non_nullable
as String,
) as $Val);
}
}
/// @nodoc
abstract class _$$MessageResponseImplCopyWith<$Res>
implements $MessageResponseCopyWith<$Res> {
factory _$$MessageResponseImplCopyWith(_$MessageResponseImpl value,
$Res Function(_$MessageResponseImpl) then) =
__$$MessageResponseImplCopyWithImpl<$Res>;
@override
@useResult
$Res call({String message});
}
/// @nodoc
class __$$MessageResponseImplCopyWithImpl<$Res>
extends _$MessageResponseCopyWithImpl<$Res, _$MessageResponseImpl>
implements _$$MessageResponseImplCopyWith<$Res> {
__$$MessageResponseImplCopyWithImpl(
_$MessageResponseImpl _value, $Res Function(_$MessageResponseImpl) _then)
: super(_value, _then);
/// Create a copy of MessageResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? message = null,
}) {
return _then(_$MessageResponseImpl(
message: null == message
? _value.message
: message // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
/// @nodoc
@JsonSerializable()
class _$MessageResponseImpl implements _MessageResponse {
const _$MessageResponseImpl({required this.message});
factory _$MessageResponseImpl.fromJson(Map<String, dynamic> json) =>
_$$MessageResponseImplFromJson(json);
@override
final String message;
@override
String toString() {
return 'MessageResponse(message: $message)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$MessageResponseImpl &&
(identical(other.message, message) || other.message == message));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType, message);
/// Create a copy of MessageResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$MessageResponseImplCopyWith<_$MessageResponseImpl> get copyWith =>
__$$MessageResponseImplCopyWithImpl<_$MessageResponseImpl>(
this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$$MessageResponseImplToJson(
this,
);
}
}
abstract class _MessageResponse implements MessageResponse {
const factory _MessageResponse({required final String message}) =
_$MessageResponseImpl;
factory _MessageResponse.fromJson(Map<String, dynamic> json) =
_$MessageResponseImpl.fromJson;
@override
String get message;
/// Create a copy of MessageResponse
/// with the given fields replaced by the non-null parameter values.
@override
@JsonKey(includeFromJson: false, includeToJson: false)
_$$MessageResponseImplCopyWith<_$MessageResponseImpl> get copyWith =>
throw _privateConstructorUsedError;
}