ReactionResponse constructor

ReactionResponse({
  1. Map<String, Object> custom = const {},
  2. String? emojiCode,
  3. required String type,
  4. required UserResponse user,
})

Returns a new ReactionResponse instance.

Implementation

ReactionResponse({
  this.custom = const {},
  this.emojiCode,
  required this.type,
  required this.user,
});