ChatScreen constructor

ChatScreen({
  1. Key? key,
  2. required String imageUrl,
  3. required String name,
  4. required String status,
  5. bool isFavorite = false,
  6. required int conversationID,
})

Implementation

ChatScreen({
  super.key,
  required this.imageUrl,
  required this.name,
  required this.status,
  this.isFavorite = false,
  required this.conversationID,
});