WhatsappException constructor

const WhatsappException({
  1. String message = "Something went wrong",
  2. WhatsappExceptionType exceptionType = WhatsappExceptionType.unknown,
  3. String? details,
})

Implementation

const WhatsappException({
  this.message = "Something went wrong",
  this.exceptionType = WhatsappExceptionType.unknown,
  this.details,
});