ChatHistory constructor

ChatHistory({
  1. required int id,
  2. Object? message,
})

Returns a new ChatHistory instance.

Implementation

ChatHistory({
  required this.id,
  this.message,
});