CommandRemoveReaction.fromJson constructor

CommandRemoveReaction.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CommandRemoveReaction.fromJson(Map<String, dynamic> json) => CommandRemoveReaction(
  target: json['target'] as String,
  msgid: json['msgid'] as String,
  emoji: json['emoji'] as String,
);