CrispView constructor

const CrispView({
  1. Key? key,
  2. required CrispController crispController,
  3. bool clearCache = false,
  4. void onLinkPressed(
    1. String url
    )?,
  5. bool transparentBackground = false,
  6. void onSessionIdReceived(
    1. String sessionId
    )?,
})

Implementation

const CrispView({
  super.key,
  required this.crispController,
  this.clearCache = false,
  this.onLinkPressed,
  this.transparentBackground = false,
  this.onSessionIdReceived,
});