getBoardPropertyKeys method
Returns the keys of all properties for the board identified by the id. The user who retrieves the property keys is required to have permissions to view the board.
Implementation
Future<dynamic> getBoardPropertyKeys(String boardId) async {
return await _client.send(
'get',
'rest/agile/1.0/board/{boardId}/properties',
pathParameters: {
'boardId': boardId,
},
);
}