KuzzleResponse constructor

KuzzleResponse({
  1. String? action,
  2. String? collection,
  3. String? controller,
  4. List<Deprecation>? deprecations,
  5. KuzzleError? error,
  6. String? index,
  7. String? room,
  8. dynamic result,
  9. int? status,
  10. Map<String, dynamic>? volatile,
})

Implementation

KuzzleResponse({
  this.action,
  this.collection,
  this.controller,
  this.deprecations,
  this.error,
  this.index,
  this.room,
  this.result,
  this.status,
  this.volatile,
});