DynamiteResponse<B, H> constructor

const DynamiteResponse<B, H>(
  1. int statusCode,
  2. B body,
  3. H headers
)

Creates a new dynamite response.

Implementation

const DynamiteResponse(
  this.statusCode,
  this.body,
  this.headers,
);