input property

List<String>? get input

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

Implementation

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

Implementation

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