DeleteSession$Mutation$DeleteSession.fromJson constructor
DeleteSession$Mutation$DeleteSession.fromJson( - Map<String, dynamic> json
)
Implementation
factory DeleteSession$Mutation$DeleteSession.fromJson(
Map<String, dynamic> json) {
switch (json['__typename'].toString()) {
case r'SessionEventsVersioned':
return DeleteSession$Mutation$DeleteSession$SessionEventsVersioned
.fromJson(json);
case r'DeleteSessionError':
return DeleteSession$Mutation$DeleteSession$DeleteSessionError.fromJson(
json);
default:
}
return _$DeleteSession$Mutation$DeleteSessionFromJson(json);
}