MyUserEvents$Subscription$MyUserEvents.fromJson constructor
MyUserEvents$Subscription$MyUserEvents.fromJson( - Map<String, dynamic> json
)
Implementation
factory MyUserEvents$Subscription$MyUserEvents.fromJson(
Map<String, dynamic> json) {
switch (json['__typename'].toString()) {
case r'SubscriptionInitialized':
return MyUserEvents$Subscription$MyUserEvents$SubscriptionInitialized
.fromJson(json);
case r'MyUser':
return MyUserEvents$Subscription$MyUserEvents$MyUser.fromJson(json);
case r'MyUserEventsVersioned':
return MyUserEvents$Subscription$MyUserEvents$MyUserEventsVersioned
.fromJson(json);
default:
}
return _$MyUserEvents$Subscription$MyUserEventsFromJson(json);
}