ModelTextMessage constructor

ModelTextMessage({
  1. required String id,
  2. required String userId,
  3. required int sequence,
  4. required DateTime displayDatetime,
  5. required String text,
  6. bool forceNewBlock = false,
})

The constructor of the text message.

Implementation

ModelTextMessage({
  required this.id,
  required this.userId,
  required this.sequence,
  required this.displayDatetime,
  required this.text,
  this.forceNewBlock = false,
});