StructuredErrorResponse constructor

const StructuredErrorResponse(
  1. int requestId, {
  2. String message = '',
  3. String? sqlStateString,
  4. int? nativeCode,
  5. String? error,
})

Implementation

const StructuredErrorResponse(
  super.requestId, {
  this.message = '',
  this.sqlStateString,
  this.nativeCode,
  this.error,
});