Files
superport/lib/data/models/auth/token_response.freezed.dart
JiWoong Sul c573096d84 feat: API 인증 시스템 구현 및 로그인 화면 연동
- AuthService, AuthRemoteDataSource 구현
- JWT 토큰 관리 (SecureStorage 사용)
- 로그인 화면 API 연동 및 에러 처리
- freezed 패키지로 Auth 관련 DTO 모델 생성
- 의존성 주입 설정 업데이트
2025-07-24 15:14:53 +09:00

247 lines
8.6 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 'token_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');
TokenResponse _$TokenResponseFromJson(Map<String, dynamic> json) {
return _TokenResponse.fromJson(json);
}
/// @nodoc
mixin _$TokenResponse {
@JsonKey(name: 'access_token')
String get accessToken => throw _privateConstructorUsedError;
@JsonKey(name: 'refresh_token')
String get refreshToken => throw _privateConstructorUsedError;
@JsonKey(name: 'token_type')
String get tokenType => throw _privateConstructorUsedError;
@JsonKey(name: 'expires_in')
int get expiresIn => throw _privateConstructorUsedError;
/// Serializes this TokenResponse to a JSON map.
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
/// Create a copy of TokenResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
$TokenResponseCopyWith<TokenResponse> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $TokenResponseCopyWith<$Res> {
factory $TokenResponseCopyWith(
TokenResponse value, $Res Function(TokenResponse) then) =
_$TokenResponseCopyWithImpl<$Res, TokenResponse>;
@useResult
$Res call(
{@JsonKey(name: 'access_token') String accessToken,
@JsonKey(name: 'refresh_token') String refreshToken,
@JsonKey(name: 'token_type') String tokenType,
@JsonKey(name: 'expires_in') int expiresIn});
}
/// @nodoc
class _$TokenResponseCopyWithImpl<$Res, $Val extends TokenResponse>
implements $TokenResponseCopyWith<$Res> {
_$TokenResponseCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
/// Create a copy of TokenResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? accessToken = null,
Object? refreshToken = null,
Object? tokenType = null,
Object? expiresIn = null,
}) {
return _then(_value.copyWith(
accessToken: null == accessToken
? _value.accessToken
: accessToken // ignore: cast_nullable_to_non_nullable
as String,
refreshToken: null == refreshToken
? _value.refreshToken
: refreshToken // ignore: cast_nullable_to_non_nullable
as String,
tokenType: null == tokenType
? _value.tokenType
: tokenType // ignore: cast_nullable_to_non_nullable
as String,
expiresIn: null == expiresIn
? _value.expiresIn
: expiresIn // ignore: cast_nullable_to_non_nullable
as int,
) as $Val);
}
}
/// @nodoc
abstract class _$$TokenResponseImplCopyWith<$Res>
implements $TokenResponseCopyWith<$Res> {
factory _$$TokenResponseImplCopyWith(
_$TokenResponseImpl value, $Res Function(_$TokenResponseImpl) then) =
__$$TokenResponseImplCopyWithImpl<$Res>;
@override
@useResult
$Res call(
{@JsonKey(name: 'access_token') String accessToken,
@JsonKey(name: 'refresh_token') String refreshToken,
@JsonKey(name: 'token_type') String tokenType,
@JsonKey(name: 'expires_in') int expiresIn});
}
/// @nodoc
class __$$TokenResponseImplCopyWithImpl<$Res>
extends _$TokenResponseCopyWithImpl<$Res, _$TokenResponseImpl>
implements _$$TokenResponseImplCopyWith<$Res> {
__$$TokenResponseImplCopyWithImpl(
_$TokenResponseImpl _value, $Res Function(_$TokenResponseImpl) _then)
: super(_value, _then);
/// Create a copy of TokenResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? accessToken = null,
Object? refreshToken = null,
Object? tokenType = null,
Object? expiresIn = null,
}) {
return _then(_$TokenResponseImpl(
accessToken: null == accessToken
? _value.accessToken
: accessToken // ignore: cast_nullable_to_non_nullable
as String,
refreshToken: null == refreshToken
? _value.refreshToken
: refreshToken // ignore: cast_nullable_to_non_nullable
as String,
tokenType: null == tokenType
? _value.tokenType
: tokenType // ignore: cast_nullable_to_non_nullable
as String,
expiresIn: null == expiresIn
? _value.expiresIn
: expiresIn // ignore: cast_nullable_to_non_nullable
as int,
));
}
}
/// @nodoc
@JsonSerializable()
class _$TokenResponseImpl implements _TokenResponse {
const _$TokenResponseImpl(
{@JsonKey(name: 'access_token') required this.accessToken,
@JsonKey(name: 'refresh_token') required this.refreshToken,
@JsonKey(name: 'token_type') required this.tokenType,
@JsonKey(name: 'expires_in') required this.expiresIn});
factory _$TokenResponseImpl.fromJson(Map<String, dynamic> json) =>
_$$TokenResponseImplFromJson(json);
@override
@JsonKey(name: 'access_token')
final String accessToken;
@override
@JsonKey(name: 'refresh_token')
final String refreshToken;
@override
@JsonKey(name: 'token_type')
final String tokenType;
@override
@JsonKey(name: 'expires_in')
final int expiresIn;
@override
String toString() {
return 'TokenResponse(accessToken: $accessToken, refreshToken: $refreshToken, tokenType: $tokenType, expiresIn: $expiresIn)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$TokenResponseImpl &&
(identical(other.accessToken, accessToken) ||
other.accessToken == accessToken) &&
(identical(other.refreshToken, refreshToken) ||
other.refreshToken == refreshToken) &&
(identical(other.tokenType, tokenType) ||
other.tokenType == tokenType) &&
(identical(other.expiresIn, expiresIn) ||
other.expiresIn == expiresIn));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode =>
Object.hash(runtimeType, accessToken, refreshToken, tokenType, expiresIn);
/// Create a copy of TokenResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$TokenResponseImplCopyWith<_$TokenResponseImpl> get copyWith =>
__$$TokenResponseImplCopyWithImpl<_$TokenResponseImpl>(this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$$TokenResponseImplToJson(
this,
);
}
}
abstract class _TokenResponse implements TokenResponse {
const factory _TokenResponse(
{@JsonKey(name: 'access_token') required final String accessToken,
@JsonKey(name: 'refresh_token') required final String refreshToken,
@JsonKey(name: 'token_type') required final String tokenType,
@JsonKey(name: 'expires_in') required final int expiresIn}) =
_$TokenResponseImpl;
factory _TokenResponse.fromJson(Map<String, dynamic> json) =
_$TokenResponseImpl.fromJson;
@override
@JsonKey(name: 'access_token')
String get accessToken;
@override
@JsonKey(name: 'refresh_token')
String get refreshToken;
@override
@JsonKey(name: 'token_type')
String get tokenType;
@override
@JsonKey(name: 'expires_in')
int get expiresIn;
/// Create a copy of TokenResponse
/// with the given fields replaced by the non-null parameter values.
@override
@JsonKey(includeFromJson: false, includeToJson: false)
_$$TokenResponseImplCopyWith<_$TokenResponseImpl> get copyWith =>
throw _privateConstructorUsedError;
}