getShopperByQuery method
Implementation
@override
Future<SpinachUser> getShopperByQuery(Map<String, dynamic> queries) async {
var res = await _getByQueryWithKey("/shoppers", queries);
return SpinachUser.fromJson(jsonDecode(res.body));
}
@override
Future<SpinachUser> getShopperByQuery(Map<String, dynamic> queries) async {
var res = await _getByQueryWithKey("/shoppers", queries);
return SpinachUser.fromJson(jsonDecode(res.body));
}