Created
June 27, 2019 19:14
-
-
Save VB10/d1db41615dfbf5011abe6cec6252e914 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // GENERATED CODE - DO NOT MODIFY BY HAND | |
| part of 'login_response.dart'; | |
| // ************************************************************************** | |
| // JsonSerializableGenerator | |
| // ************************************************************************** | |
| LoginResponse _$LoginResponseFromJson(Map<String, dynamic> json) { | |
| return LoginResponse( | |
| kind: json['kind'] as String, | |
| localId: json['localId'] as String, | |
| email: json['email'] as String, | |
| id_token: json['id_token'] as String, | |
| refreshToken: json['refreshToken'] as String); | |
| } | |
| Map<String, dynamic> _$LoginResponseToJson(LoginResponse instance) => | |
| <String, dynamic>{ | |
| 'kind': instance.kind, | |
| 'localId': instance.localId, | |
| 'email': instance.email, | |
| 'id_token': instance.id_token, | |
| 'refreshToken': instance.refreshToken | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment