saveWithDesignations method

each donation must be designated to one or more funds Make sure you have already set the person_id before calling this

In most cases, calling saveToFunds will be easier unless you already have a list of designation objects

Implementation

Future<PlanningCenterApiResponse> saveWithDesignations(
    List<PcoGivingDesignation> designations) async {
  return save(withIncluded: designations);
}