ReactionDeletedEventData.fromJson constructor
ReactionDeletedEventData.fromJson(
- Map json_
Implementation
ReactionDeletedEventData.fromJson(core.Map json_)
: this(
reaction: json_.containsKey('reaction')
? Reaction.fromJson(
json_['reaction'] as core.Map<core.String, core.dynamic>)
: null,
);