LServerException constructor

LServerException({
  1. required Map<String, dynamic> response,
  2. String? exception,
  3. String? file,
  4. int? line,
  5. List<FileStackTrace>? trace,
})

Implementation

LServerException({
  required Map<String, dynamic> response,
  this.exception,
  this.file,
  this.line,
  this.trace,
}) : super(
        response: response,
      );