addShopperDetails method
Implementation
@override
Future<ShopperDetails> addShopperDetails(
Map<String, dynamic> body, String id) async {
var res = await _postWithKey("/shoppers/" + id + "/details", body);
return ShopperDetails.fromJson(jsonDecode(res.body));
}