NiceInboxMessage constructor
const
NiceInboxMessage({ - required String id,
- required String subject,
- required String sender,
- required DateTime date,
- String? preview,
- bool read = false,
- bool starred = false,
- NiceMessagePriority priority = NiceMessagePriority.normal,
- ImageProvider<Object>? avatar,
- int attachments = 0,
})
Implementation
const NiceInboxMessage({
required this.id,
required this.subject,
required this.sender,
required this.date,
this.preview,
this.read = false,
this.starred = false,
this.priority = NiceMessagePriority.normal,
this.avatar,
this.attachments = 0,
});