Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'apple_id_credential.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 0 : _$_AppleIdCredential _$$_AppleIdCredentialFromJson(Map<String, dynamic> json) =>
10 0 : _$_AppleIdCredential(
11 0 : userIdentifier: json['userIdentifier'] as String?,
12 0 : givenName: json['givenName'] as String?,
13 0 : familyName: json['familyName'] as String?,
14 0 : email: json['email'] as String?,
15 0 : authorizationCode: json['authorizationCode'] as String,
16 0 : identityToken: json['identityToken'] as String?,
17 0 : state: json['state'] as String?,
18 : );
19 :
20 0 : Map<String, dynamic> _$$_AppleIdCredentialToJson(
21 : _$_AppleIdCredential instance) =>
22 0 : <String, dynamic>{
23 0 : 'userIdentifier': instance.userIdentifier,
24 0 : 'givenName': instance.givenName,
25 0 : 'familyName': instance.familyName,
26 0 : 'email': instance.email,
27 0 : 'authorizationCode': instance.authorizationCode,
28 0 : 'identityToken': instance.identityToken,
29 0 : 'state': instance.state,
30 : };
|