customParams property

dynamic customParams

Takes JSON with parameters that are not presented in the DocumentReader.

Implementation

dynamic get customParams => _customParams;
void customParams=(dynamic val)

Implementation

set customParams(dynamic val) {
  _customParams = val;
  _setProcessParams({"customParams": val}, this);
}