getWhiteboards function

Future<List<CubeWhiteboard>> getWhiteboards(
  1. String chatDialogId
)

Returns whiteboards related to particular chat dialog with id chatDialogId.

Implementation

Future<List<CubeWhiteboard>> getWhiteboards(String chatDialogId) {
  return GetWhiteboardsQuery(chatDialogId).perform();
}