feedback method

Future<int> feedback({
  1. required List<ProblemFeedbackOption> types,
  2. ProblemFeedbackInfo? info,
})

反馈,用于问题上报。

Implementation

Future<int> feedback({
  required List<ProblemFeedbackOption> types,
  ProblemFeedbackInfo? info,
}) async {
  return byteRTCHelper.feedback(types: types, info: info);
}