TickkiChatWidget constructor

const TickkiChatWidget({
  1. Key? key,
  2. required TickkiChat client,
  3. required String visitorId,
  4. String? name,
  5. String? email,
  6. String? phone,
  7. TickkiChatStrings strings = const TickkiChatStrings(),
})

Implementation

const TickkiChatWidget({
  super.key,
  required this.client,
  required this.visitorId,
  this.name,
  this.email,
  this.phone,
  this.strings = const TickkiChatStrings(),
});