actionCraftingMyNameActionCraftingPostWithHttpInfo method

Future<Response> actionCraftingMyNameActionCraftingPostWithHttpInfo(
  1. String name,
  2. CraftingSchema craftingSchema
)

Action Crafting

Craft an item. The character must be on a map with a workshop.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> actionCraftingMyNameActionCraftingPostWithHttpInfo(
  String name,
  CraftingSchema craftingSchema,
) async {
  // ignore: prefer_const_declarations
  final path = r'/my/{name}/action/crafting'.replaceAll('{name}', name);

  // ignore: prefer_final_locals
  Object? postBody = craftingSchema;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>['application/json'];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}