KuzzleError constructor

KuzzleError([
  1. String? id,
  2. String? message,
  3. int? status,
  4. StackTrace? _stack,
])

Implementation

KuzzleError([this.id, this.message, this.status, StackTrace? _stack])
    : stack = _stack ?? StackTrace.current;