MockAPIResponse constructor

const MockAPIResponse({
  1. int statusCode = 200,
  2. dynamic body,
  3. Map<String, dynamic>? headers,
  4. int? delayMs,
})

Implementation

const MockAPIResponse({
  this.statusCode = 200,
  this.body,
  this.headers,
  this.delayMs,
});