toJson method
Converts this SecurityScheme object to a JSON map.
Implementation
Map<String, dynamic> toJson() {
final json = _$SecuritySchemeToJson(this as _SecurityScheme);
if (extensions != null) {
json.addAll(extensions!);
}
return json;
}