doLogReport method

Future<EasyPacket<void>> doLogReport({
  1. required int type,
  2. String image = '',
  3. dynamic relation,
  4. String? host,
  5. String? href,
  6. int? customXNo,
  7. dynamic customXId,
  8. String desc = '',
})

记录反馈日志

Implementation

Future<EasyPacket<void>> doLogReport({required int type, String image = '', ObjectId? relation, String? host, String? href, int? customXNo, ObjectId? customXId, String desc = ''}) async {
  final response = await _aliveClient.websocketRequest('doLogReport', data: {'bsid': bsid, 'type': type, 'image': image, 'relation': relation, 'host': host, 'href': href, 'customXNo': customXNo, 'customXId': customXId, 'desc': desc});
  return response;
}