IntegrationTestHttpResponse constructor

const IntegrationTestHttpResponse({
  1. required String path,
  2. int statusCode = 200,
  3. Map<String, dynamic>? headers,
  4. dynamic body,
  5. bool ignoreQuery = false,
  6. Duration? delay,
  7. HttpMethod? method,
})

Implementation

const IntegrationTestHttpResponse({
  required this.path,
  this.statusCode = 200,
  this.headers,
  this.body,
  this.ignoreQuery = false,
  this.delay,
  this.method,
});