ChatView constructor

const ChatView({
  1. Key? key,
  2. required Color appBarColor,
  3. required String url,
  4. required Map<String, dynamic> parametros,
  5. required void onMinimize()?,
  6. required Future<bool> onClose()?,
  7. required bool shouldClose,
})

Implementation

const ChatView({
  super.key,
  required this.appBarColor,
  required this.url,
  required this.parametros,
  required this.onMinimize,
  required this.onClose,
  required this.shouldClose,
});