deleteComment method

Future<void> deleteComment(
  1. String key,
  2. String id
)

Deletes the comment given by id from the Figma file specified by key.

Implementation

Future<void> deleteComment(String key, String id) async =>
    await _deleteFigma('/files/$key/comments/$id');