ChatRow constructor

const ChatRow({
  1. required String title,
  2. int unreadMessages = 0,
  3. String? lastUsed,
  4. String? subTitle,
  5. Widget? avatar,
  6. Key? key,
})

Implementation

const ChatRow({
  required this.title,
  this.unreadMessages = 0,
  this.lastUsed,
  this.subTitle,
  this.avatar,
  super.key,
});