getRetailerById method
Implementation
@override
Future<SpinachUser> getRetailerById(String id) async {
var res = await _getByIdWithToken("/retailers/" + id);
return SpinachUser.fromJson(jsonDecode(res.body));
}
@override
Future<SpinachUser> getRetailerById(String id) async {
var res = await _getByIdWithToken("/retailers/" + id);
return SpinachUser.fromJson(jsonDecode(res.body));
}