propDelete method

Future<bool> propDelete(
  1. String id
)
inherited

propDelete -> /v1/prop/{id}

Deletes the specified prop.

PARAMETERS

id (required) : The ID of the prop, either UUID, name, or index.

  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4
  • Example (by_name): Prop Name
  • Example (by_index): 3

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> propDelete(String id) async {
  String url = '/v1/prop/$id';

  return await call('delete', url, httpAccept: 'application/json');
}