toString method
Generates a string representation of the Reaction
.
Implementation
@override
String toString() {
return """
Reaction {
id : $id,
messageId : $messageId,
reaction : $reaction,
uid : $uid,
reactedAt : $reactedAt,
reactedBy : $reactedBy
}
""";
}