QueryErrorContext constructor

QueryErrorContext({
  1. required String statement,
  2. required String clientContextId,
  3. required String? parameters,
  4. required int httpResponseCode,
  5. required String httpResponseBody,
})

Implementation

QueryErrorContext({
  required this.statement,
  required this.clientContextId,
  required this.parameters,
  required this.httpResponseCode,
  required this.httpResponseBody,
});