SimulateResponse constructor

SimulateResponse({
  1. dynamic data,
  2. Map? headers,
  3. int statusCode = 200,
})

Implementation

SimulateResponse({
  this.data,
  this.headers,
  this.statusCode = 200,
});