FlutterSupportChat constructor

const FlutterSupportChat({
  1. Key? key,
  2. required List<String> supporterEmails,
  3. required String currentEmail,
  4. required FirebaseFirestore firestoreInstance,
  5. required String newCaseText,
  6. String createCaseText = 'Create Support Case',
  7. String writeMessageText = 'Write a message...',
  8. String closeCaseText = "Do you really want to close this case?",
})

Implementation

const FlutterSupportChat({
  Key? key,
  required this.supporterEmails,
  required this.currentEmail,
  required this.firestoreInstance,
  required this.newCaseText,
  this.createCaseText = 'Create Support Case',
  this.writeMessageText = 'Write a message...',
  this.closeCaseText = "Do you really want to close this case?",
}) : super(key: key);