getCapsuleById method

Future<Response> getCapsuleById({
  1. required String id,
})

Implementation

Future<Response> getCapsuleById({
  required String id,
}) {
  return _req.getData(endpoint: Endpoints.capsules, id: id);
}