callComment static method
通话评价
Implementation
static Future<DataResult> callComment(String? anchorId, String? callId,
String? isUp, List<String> label) async {
Map other = {
'anchorId': anchorId,
'callId': callId,
'isUp': isUp,
'label': label
};
var res = await BaseDao.fromBaseEncrypt(other, Address.callComment());
if (res.result) {
var entity = TokenEntity.fromJson(res.data);
return DataResult(entity, true);
}
return res;
}