Now you call
await room.messages.send(withParams: .init(text: "Hello")) which looks unnecessary complicated.
It should be
await room.messages.send(text: "Hello") and if user needs to add metadata and headers they will use the full version with params.
┆Issue is synchronized with this Jira Task by Unito
Now you call
await room.messages.send(withParams: .init(text: "Hello"))which looks unnecessary complicated.It should be
await room.messages.send(text: "Hello")and if user needs to add metadata and headers they will use the full version with params.┆Issue is synchronized with this Jira Task by Unito