RowResponse constructor

const RowResponse(
  1. ApexRequest request,
  2. int? code,
  3. Uint8List? bodyBytes,
  4. Map<String, String>? headers,
  5. int? contentLength,
  6. bool? isRedirect,
  7. bool? persistentConnection,
  8. String? reasonPhrase,
)

Implementation

const RowResponse(
    this.request,
    this.code,
    this.bodyBytes,
    this.headers,
    this.contentLength,
    this.isRedirect,
    this.persistentConnection,
    this.reasonPhrase);