fromJson static method

ReactionList fromJson(
  1. dynamic wrapped
)
override

Implementation

static ReactionList fromJson(wrapped) => wrapped is ReactionList
    ? wrapped
    : ReactionList(wrapped as Map<String, dynamic>, update: true);