deleteBoardProperty method

Future<void> deleteBoardProperty({
  1. required String boardId,
  2. required String propertyKey,
})

Removes the property from the board identified by the id. Ths user removing the property is required to have permissions to modify the board.

Implementation

Future<void> deleteBoardProperty(
    {required String boardId, required String propertyKey}) async {
  await _client.send(
    'delete',
    'rest/agile/1.0/board/{boardId}/properties/{propertyKey}',
    pathParameters: {
      'boardId': boardId,
      'propertyKey': propertyKey,
    },
  );
}