ChatMixin$LastItem$Node.fromJson constructor

ChatMixin$LastItem$Node.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ChatMixin$LastItem$Node.fromJson(Map<String, dynamic> json) {
  switch (json['__typename'].toString()) {
    case r'ChatInfo':
      return ChatMixin$LastItem$Node$ChatInfo.fromJson(json);
    case r'ChatCall':
      return ChatMixin$LastItem$Node$ChatCall.fromJson(json);
    case r'ChatMessage':
      return ChatMixin$LastItem$Node$ChatMessage.fromJson(json);
    case r'ChatForward':
      return ChatMixin$LastItem$Node$ChatForward.fromJson(json);
    default:
  }
  return _$ChatMixin$LastItem$NodeFromJson(json);
}