AiHttpResponse constructor

const AiHttpResponse({
  1. required int statusCode,
  2. Map<String, String> headers = const {},
  3. String body = '',
})

Implementation

const AiHttpResponse({
  required this.statusCode,
  this.headers = const {},
  this.body = '',
});