changePlan method
Implementation
Future<SubscriptionModel> changePlan(String id, String planIdentifier) async {
var result = await apiResource.post(partOfUrl: "/$id/change_plan/$planIdentifier");
return SubscriptionModel.fromMap(result);
}
Future<SubscriptionModel> changePlan(String id, String planIdentifier) async {
var result = await apiResource.post(partOfUrl: "/$id/change_plan/$planIdentifier");
return SubscriptionModel.fromMap(result);
}