addTicketComment method
Add a comment to an existing ticket.
requestId: The ticket to comment onbody: The comment textattachmentTokens: Optional upload tokens
Implementation
@override
Future<void> addTicketComment({
required String requestId,
required String body,
List<String> attachmentTokens = const [],
}) async {
await methodChannel.invokeMethod<void>(
'addTicketComment',
{
'requestId': requestId,
'body': body,
'attachmentTokens': attachmentTokens,
},
);
}