Skip to content

Commit

Permalink
convert params to pascal case
Browse files Browse the repository at this point in the history
  • Loading branch information
dickermoshe committed Mar 3, 2024
1 parent 3cbaf5f commit 681482d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swagger_parser/lib/src/parser/parser/open_api_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ class OpenApiParser {

return (
type: UniversalType(
type: type,
type: type.toPascal,
name: newName?.toCamel,
description: description,
format: ofType?.format,
Expand Down Expand Up @@ -1123,7 +1123,7 @@ class OpenApiParser {

return (
type: UniversalType(
type: type,
type: type.toPascal,
name: newName?.toCamel,
description: description,
format: map[_formatConst]?.toString(),
Expand Down

0 comments on commit 681482d

Please sign in to comment.