Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'set_auth_step_action.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 0 : _$_SetAuthStepAction _$$_SetAuthStepActionFromJson(Map<String, dynamic> json) =>
10 0 : _$_SetAuthStepAction(
11 0 : $enumDecode(_$AuthStepEnumEnumMap, json['step']),
12 : );
13 :
14 0 : Map<String, dynamic> _$$_SetAuthStepActionToJson(
15 : _$_SetAuthStepAction instance) =>
16 0 : <String, dynamic>{
17 0 : 'step': _$AuthStepEnumEnumMap[instance.step],
18 : };
19 :
20 : const _$AuthStepEnumEnumMap = {
21 : AuthStepEnum.checking: 'CHECKING',
22 : AuthStepEnum.waitingForInput: 'WAITING_FOR_INPUT',
23 : AuthStepEnum.contactingApple: 'CONTACTING_APPLE',
24 : AuthStepEnum.contactingGoogle: 'CONTACTING_GOOGLE',
25 : AuthStepEnum.signingInWithFirebase: 'SIGNING_IN_WITH_FIREBASE',
26 : AuthStepEnum.signingOut: 'SIGNING_OUT',
27 : };
|