AIInputBar constructor

const AIInputBar({
  1. Key? key,
  2. required AIChatTheme theme,
  3. required String hintText,
  4. required bool isLoading,
  5. required void onSend(
    1. String text
    ),
})

Implementation

const AIInputBar({
  super.key,
  required this.theme,
  required this.hintText,
  required this.isLoading,
  required this.onSend,
});