output property

List<String>? get output

List of output devices specified by their ID. To indicate output devices should be unaffected, leave this property unset.

Implementation

List<String>? get output =>
    _wrapped.output?.toDart.cast<String>().map((e) => e).toList();
set output (List<String>? v)

Implementation

set output(List<String>? v) {
  _wrapped.output = v?.toJSArray((e) => e);
}