ChatExample constructor

const ChatExample({
  1. required String question,
  2. required void onTap(
    1. ChatMessagesController
    ),
})

Creates a chat example.

Implementation

const ChatExample({
  required this.question,
  required this.onTap,
});