ReactionResultDTO constructor

ReactionResultDTO({
  1. bool? success,
  2. String? message,
})

Returns a new ReactionResultDTO instance.

Implementation

ReactionResultDTO({
  this.success,
  this.message,
});