PlanningCenterApiError constructor

PlanningCenterApiError(
  1. String message,
  2. String application,
  3. Uri requestUri,
  4. String requestBody,
  5. PlanningCenterApiQuery query,
  6. int statusCode,
  7. String responseBody,
)

Implementation

PlanningCenterApiError(
  this.message,
  String application,
  Uri requestUri,
  String requestBody,
  PlanningCenterApiQuery query,
  int statusCode,
  String responseBody,
) : super(
        application,
        query,
        requestUri,
        requestBody,
        statusCode,
        responseBody,
        [],
        PlanningCenterApiMeta.fromJson({}),
        {},
        [],
      );