ChatMessageMixin$RepliesTo.fromJson constructor

ChatMessageMixin$RepliesTo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ChatMessageMixin$RepliesTo.fromJson(Map<String, dynamic> json) {
  switch (json['__typename'].toString()) {
    case r'ChatMessageQuote':
      return ChatMessageMixin$RepliesTo$ChatMessageQuote.fromJson(json);
    case r'ChatCallQuote':
      return ChatMessageMixin$RepliesTo$ChatCallQuote.fromJson(json);
    case r'ChatInfoQuote':
      return ChatMessageMixin$RepliesTo$ChatInfoQuote.fromJson(json);
    default:
  }
  return _$ChatMessageMixin$RepliesToFromJson(json);
}