SwaggerResponse constructor

const SwaggerResponse({
  1. required String statusCode,
  2. String? statusMessage = '',
  3. SwaggerContent? response,
})

Implementation

const SwaggerResponse({
  required this.statusCode,
  this.statusMessage = '',
  this.response,
});