We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b5a71 commit 7caa3d0Copy full SHA for 7caa3d0
lib/chopper/json_serializable_converter.dart
@@ -61,6 +61,7 @@ class JsonSerializableConverter extends JsonConverter {
61
final jsonRes = await super.convertResponse<dynamic, dynamic>(response);
62
63
return jsonRes.copyWith<BodyType>(
64
- body: _decode<InnerType>(jsonRes.body) as BodyType);
+ body: _decode<InnerType>(jsonRes.body) as BodyType,
65
+ );
66
}
67
0 commit comments