commentPopUp method
Implementation
Future<void> commentPopUp(String popUpId, String userName, String popUpToken,
String userId, String commentValue) async {
await _postRequest(
url: "${apiUrl}client-api/messages/comment",
body: {
'message_id':popUpId,
'name': userName,
'body': commentValue,
'participatorId': userId,
},
popUpToken: popUpToken,
);
}