remote property

bool? remote

If true, the synthesis engine is a remote network resource. It may be higher latency and may incur bandwidth costs.

Implementation

bool? get remote => _wrapped.remote;
void remote=(bool? v)

Implementation

set remote(bool? v) {
  _wrapped.remote = v;
}