ChatwootWebView constructor

const ChatwootWebView({
  1. required String websiteToken,
  2. required String user,
  3. String locale = 'en',
  4. void onError(
    1. String error
    )?,
  5. String? name,
  6. String? email,
  7. String? hash,
  8. String baseUrl = 'https://app.chatwoot.com',
  9. Key? key,
})

Implementation

const ChatwootWebView({
  required this.websiteToken,
  required this.user,
  this.locale = 'en',
  this.onError,
  this.name,
  this.email,
  this.hash,
  this.baseUrl = 'https://app.chatwoot.com',
  Key? key,
}) : super(key: key);