getFileHashes method
Future<Result<Vector<FileHashBase> > >
getFileHashes({
- required InputFileLocationBase location,
- required int offset,
Get File Hashes.
ID: 9156982a.
Implementation
Future<Result<Vector<FileHashBase>>> getFileHashes({
required InputFileLocationBase location,
required int offset,
}) async {
// Preparing the request.
final request = UploadGetFileHashes(location: location, offset: offset);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._toVector<FileHashBase>();
}