blob: 6d89333ec3961c1e2f48b1c48cd93f68b4512b24 [file] [log] [blame]
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Generated from Web IDL definitions.
import 'dart:js_interop';
import 'webrtc.dart';
@JS()
@staticInterop
@anonymous
class RTCIceGatherOptions {
external factory RTCIceGatherOptions({
RTCIceTransportPolicy gatherPolicy,
JSArray iceServers,
});
}
extension RTCIceGatherOptionsExtension on RTCIceGatherOptions {
external set gatherPolicy(RTCIceTransportPolicy value);
external RTCIceTransportPolicy get gatherPolicy;
external set iceServers(JSArray value);
external JSArray get iceServers;
}