ChatAvailableReactionsSome.fromJson constructor
Parse from a json
Implementation
factory ChatAvailableReactionsSome.fromJson(Map<String, dynamic> json) =>
    ChatAvailableReactionsSome(
      reactions: List<ReactionType>.from((json['reactions'] ?? [])
          .map((item) => ReactionType.fromJson(item))
          .toList()),
    );