ChannelMembers.onlyMe constructor
Returns the instace containing data of the local user (client) only.
Implementation
factory ChannelMembers.onlyMe({
required String myId,
required Map<String, dynamic> myData,
}) =>
ChannelMembers(
membersMap: {
myId: MemberInfo(
id: myId,
info: {
...myData,
},
),
},
myId: myId,
);