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