setMetadata method
- String metadata
Sets and updates the metadata of the local participant.
Note: this requires CanUpdateOwnMetadata
permission encoded in the token.
@param metadata
Implementation
void setMetadata(String metadata) {
room.engine.signalClient
.sendUpdateLocalMetadata(lk_rtc.UpdateParticipantMetadata(
name: name,
metadata: metadata,
));
}