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