Generating with swagger_to_dart 4.0.0 I can observe this generation change :
from
/// id
@JsonKey(name: MyObject.idKey_) required String id,
to
/// iD
@JsonKey(name: MyObject.iDKey_) required String iD,
this implies a lot of changes everywhere in the code that uses generated objects
I guess this is the Recase.toCamelCase that has a failing system for two letters word?
Generating with swagger_to_dart 4.0.0 I can observe this generation change :
from
to
this implies a lot of changes everywhere in the code that uses generated objects
I guess this is the Recase.toCamelCase that has a failing system for two letters word?