SwaggerInfo constructor

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

Implementation

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