suspend method

Implementation

Future<SubscriptionModel> suspend(String id) async {
  var result = await apiResource.post(partOfUrl: "/$id/suspend");
  return SubscriptionModel.fromMap(result);
}