ReactionBatchCreatedEventData.fromJson constructor
ReactionBatchCreatedEventData.fromJson(
- Map json_
Implementation
ReactionBatchCreatedEventData.fromJson(core.Map json_)
: this(
reactions: (json_['reactions'] as core.List?)
?.map((value) => ReactionCreatedEventData.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);