BaseMessage constructor
BaseMessage({
- required String id,
- required MessageType type,
- String? fromId,
- String? fromName,
- int? sendTime,
Implementation
BaseMessage(
{required this.id,
required this.type,
this.fromId,
this.fromName,
this.sendTime});