DocumentationPartLocation constructor

DocumentationPartLocation({
  1. required DocumentationPartType type,
  2. String? method,
  3. String? name,
  4. String? path,
  5. String? statusCode,
})

Implementation

DocumentationPartLocation({
  required this.type,
  this.method,
  this.name,
  this.path,
  this.statusCode,
});