SwaggerSecurity.fromJson constructor
Implementation
factory SwaggerSecurity.fromJson(Map<String, dynamic> json) {
return SwaggerSecurity(
name: json['name'],
type: json['type'],
description: json['description'],
scheme: json['scheme'],
bearerFormat: json['bearerFormat'],
);
}