remote property

bool? get 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;
set remote (bool? v)

Implementation

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