addTicketComment method
Add a comment to an existing ticket.
requestId: The ticket to comment onbody: The comment textattachmentTokens: Optional upload tokens
Implementation
Future<void> addTicketComment({
required String requestId,
required String body,
List<String> attachmentTokens = const [],
}) {
throw UnimplementedError(
'addTicketComment() has not been implemented.');
}