getShopperById method

  1. @override
Future<SpinachUser> getShopperById(
  1. String id
)
override

Implementation

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