FayeError constructor

FayeError(
  1. String code,
  2. String message, {
  3. List<String>? params,
  4. Map<String, dynamic>? args,
  5. int? httpCode,
  6. String? httpBody,
  7. StackTrace? stackTrace,
})

Implementation

FayeError(
  this.code,
  this.message, {
  this.params,
  this.args,
  this.httpCode,
  this.httpBody,
  this.stackTrace,
});