mirror of
https://github.com/bettercoding-dev/flutter-jwt-auth.git
synced 2025-08-06 17:28:17 +08:00
20 lines
608 B
Dart
20 lines
608 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'refresh_token_request.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$RefreshTokenRequestImpl _$$RefreshTokenRequestImplFromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$RefreshTokenRequestImpl(
|
|
token: json['token'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$$RefreshTokenRequestImplToJson(
|
|
_$RefreshTokenRequestImpl instance) =>
|
|
<String, dynamic>{
|
|
'token': instance.token,
|
|
};
|