Skip to content

Commit

Permalink
API format camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
a-givertzman committed Nov 12, 2023
1 parent 28f943a commit c47c996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/reply/api_reply.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ApiReply {
// _log.fine('.fromJson | jsonString: $jsonString');
final jsonMap = json.decode(jsonString);
_log.fine('.fromJson | jsonMap: $jsonMap');
_authToken = jsonMap['auth_token'];
_authToken = jsonMap['authToken'];
_id = jsonMap['id'];
_query = jsonMap['query'] ?? {};
_data = (jsonMap['data'] as List<dynamic>).map((e) {
Expand Down

0 comments on commit c47c996

Please sign in to comment.