mirror of
https://github.com/bettercoding-dev/flutter-jwt-auth.git
synced 2025-08-06 17:28:17 +08:00
implement jwt flow
This commit is contained in:
19
lib/auth/client/refresh_token_request.g.dart
Normal file
19
lib/auth/client/refresh_token_request.g.dart
Normal file
@ -0,0 +1,19 @@
|
||||
// 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,
|
||||
};
|
Reference in New Issue
Block a user