Reaction constructor

Reaction({
  1. int? id,
  2. String? nodeId,
  3. User? user,
  4. String? content,
  5. DateTime? createdAt,
})

Implementation

Reaction({
  this.id,
  this.nodeId,
  this.user,
  this.content,
  this.createdAt,
});