diff --git a/test/mock/peerconnection_mock.dart b/test/mock/peerconnection_mock.dart index f2df6b4..0c64eaa 100644 --- a/test/mock/peerconnection_mock.dart +++ b/test/mock/peerconnection_mock.dart @@ -224,4 +224,8 @@ class MockPeerConnection extends RTCPeerConnection { static Future create(Map configuration, [Map? constraints]) async => MockPeerConnection(); + + @override + // TODO: implement restartIce + Future restartIce() => throw UnimplementedError(); }