DeviceIdLists constructor

DeviceIdLists({
  1. List<String>? input,
  2. List<String>? output,
})

Implementation

DeviceIdLists({
  /// List of input devices specified by their ID.
  /// To indicate input devices should be unaffected, leave this property
  ///   unset.
  List<String>? input,

  /// List of output devices specified by their ID.
  /// To indicate output devices should be unaffected, leave this property
  ///   unset.
  List<String>? output,
}) : _wrapped = $js.DeviceIdLists(
        input: input?.toJSArray((e) => e),
        output: output?.toJSArray((e) => e),
      );