getResponse method

Future<Map<String, dynamic>?> getResponse(
  1. String requestId
)

Gets server response by task ID

requestId - task ID

Returns JSON with TaskInfo (id, status, path, registrationDate, responseJson) or null if the task is not found

Implementation

Future<Map<String, dynamic>?> getResponse(String requestId) {
  throw UnimplementedError('getResponse() has not been implemented.');
}