userAppendMessage method
Send a message as a user to specified feedback thread.
Implementation
Future<SendResponse> userAppendMessage(
String threadId, String content) async {
return _appendMessage(threadId, content, 'user');
}
Send a message as a user to specified feedback thread.
Future<SendResponse> userAppendMessage(
String threadId, String content) async {
return _appendMessage(threadId, content, 'user');
}