MessageSearchItem constructor

const MessageSearchItem({
  1. Key? key,
  2. required GetMessageResponse getMessageResponse,
  3. VoidCallback? onTap,
  4. bool showOnlineStatus = true,
})

Instantiate a new MessageSearchItem

Implementation

const MessageSearchItem({
  Key? key,
  required this.getMessageResponse,
  this.onTap,
  this.showOnlineStatus = true,
}) : super(key: key);