TypewriterMarkdown constructor

const TypewriterMarkdown({
  1. Key? key,
  2. required String text,
  3. required AIChatviewController chatController,
})

Implementation

const TypewriterMarkdown({
  super.key,
  required this.text,
  required this.chatController,
});