requestUCRReport method

Submits a User Corrected Result (UCR) report.

Implementation

Future<WrapperSessionUcrReportResponse> requestUCRReport(
    WrapperSessionUcrReportRequest request) async {
  await _wrapperSessionSetup;
  final String? resultJson = await _channel
      .invokeMethod(_methodRequestUcrReport, {_extraRequest: request.toRawJson()});
  return WrapperSessionUcrReportResponse.fromRawJson(resultJson!);
}