fetchCampaign method

Future fetchCampaign(
  1. int campaignId
)

Implementation

Future fetchCampaign(int campaignId) async {
  _campaign = await _causesService.getCampaign(campaignId);
  notifyListeners();
}