BirdMessage constructor

BirdMessage({
  1. required String channelUrl,
  2. required MessageType type,
  3. required String senderId,
  4. String? senderName,
  5. String? senderProfileUrl,
  6. required String message,
})

Implementation

BirdMessage({
  required this.channelUrl,
  required this.type,
  required this.senderId,
  this.senderName,
  this.senderProfileUrl,
  required this.message,
});