Tawk constructor

const Tawk({
  1. Key? key,
  2. required String directChatLink,
  3. TawkVisitor? visitor,
  4. Function? onLoad,
  5. dynamic onLinkTap(
    1. String
    )?,
  6. Widget? placeholder,
})

Implementation

const Tawk({
  Key? key,
  required this.directChatLink,
  this.visitor,
  this.onLoad,
  this.onLinkTap,
  this.placeholder,
}) : super(key: key);