sender property
dynamic
sender
getter/setter pair
Only show messages that are sent by a sender that has all of the given properties
For example:
// Only show messages sent by users with the role of 'admin' and if the user ID is 1.
{sender: {role: ["==", "admin"], id: ["==", "1"]}}
Implementation
external dynamic sender;