ChatException constructor

ChatException({
  1. String? message,
  2. int? code,
  3. String? name,
  4. String? origin,
  5. String? platform,
})

Implementation

ChatException({
  this.message,
  this.code,
  this.name,
  this.origin,
  this.platform,
});