Skip to content

Commit 7caa3d0

Browse files
committed
🎨 Fixed minor issues
1 parent 57b5a71 commit 7caa3d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/chopper/json_serializable_converter.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class JsonSerializableConverter extends JsonConverter {
6161
final jsonRes = await super.convertResponse<dynamic, dynamic>(response);
6262

6363
return jsonRes.copyWith<BodyType>(
64-
body: _decode<InnerType>(jsonRes.body) as BodyType);
64+
body: _decode<InnerType>(jsonRes.body) as BodyType,
65+
);
6566
}
6667
}

0 commit comments

Comments
 (0)