Introduction
Plugins are one-click add-ons that can make your meetings more immersive and collaborative. RealtimeKit provides a bunch of inbuilt plugins to choose from.
The meeting plugins can be accessed from the meeting.plugins
object, it exposes the following.
Property | Type | Description |
---|---|---|
all | List | All plugins the meeting has access to. |
Each plugin in the list is of type RtkPlugin
which has the following public fields and methods:
class RtkPlugin {
String id;
String name;
String description;
String picture;
bool private;
bool staggered;
String baseURL;
void activate()
void deactivate()
}