setParameters method
Sets parameters for the document scanner.
Parameters:
params
: JSON string with the parameters.
Returns 0
on success, or a non-zero error code if the parameters could not be set.
Implementation
@override
Future<int?> setParameters(String params) async {
return _ddnManager.setParameters(params);
}