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