implemented tracks, local & remote participants

This commit is contained in:
David Zhao
2021-07-21 23:30:24 -07:00
parent 0a682f7831
commit b18c37fd1a
14 changed files with 468 additions and 16 deletions
+4
View File
@@ -16,3 +16,7 @@ class ConnectError extends LiveKitError {
class TrackPublishError extends LiveKitError {
TrackPublishError([String msg = 'Failed to publish track']) : super(msg);
}
class DataPublishError extends LiveKitError {
DataPublishError([String msg = 'Failed to publish data']) : super(msg);
}