delete method

Future<DeleteResponse> delete(
  1. String id
)
override

Implementation

Future<DeleteResponse> delete(
  String id,
) async {
  final builder = RequestBuilder();
  builder.body = null;
  if (id == null) {
    throw BadRequestException.singleField(
      "id",
      "Missing required request parameter",
      keyword: "required",
    );
  }

  // create path and map variables
  // create path and map variables
  builder.path = "/sunny/0.0.1/fact/fact/{id}";
  builder.pathParams["id"] = Uri.encodeComponent(id);
  List<String> contentTypes = [];
  String contentType =
      contentTypes.isNotEmpty ? contentTypes[0] : "application/json";
  builder.contentType = contentType;
  builder.basePath = apiClient.basePaths["facts"];
  builder.method = HttpMethod.DELETE;

  final response = await apiClient.invokeRequest(builder);
  final value = json.decode(response.body);
  return DeleteResponse.fromJson(value);
}