ChatNotice constructor

ChatNotice({
  1. required String command,
  2. required String userId,
  3. String? preview,
  4. String? senderAvatar,
  5. String? senderUserName,
})

Implementation

ChatNotice({
  required this.command,
  required this.userId,
  this.preview,
  this.senderAvatar,
  this.senderUserName,
});