MmReaction constructor

MmReaction({
  1. String? userId,
  2. String? postId,
  3. String? emojiName,
  4. int? createAt,
})

Returns a new MmReaction instance.

Implementation

MmReaction({
  this.userId,
  this.postId,
  this.emojiName,
  this.createAt,
});