SwaggerInfo constructor

const SwaggerInfo({
  1. required String title,
  2. required String version,
  3. String? description,
})

Implementation

const SwaggerInfo({
  required this.title,
  required this.version,
  this.description,
});