ChatView constructor

const ChatView({
  1. Key? key,
  2. bool? withInput,
  3. bool? withToolbar,
  4. required FlutterChatViewCreatedCallback onNativeViewCreated,
})

Implementation

const ChatView({
  super.key,
  this.withInput,
  this.withToolbar,
  required this.onNativeViewCreated,
});