MailboxMessage constructor

const MailboxMessage({
  1. required String from,
  2. required String text,
  3. required String timestamp,
  4. String? color,
})

Implementation

const MailboxMessage({
  required this.from,
  required this.text,
  required this.timestamp,
  this.color,
});