resolveMember method
Resolves the member who is typing.
Example:
client.events.typing((Typing typing) async {
final member = await typing.resolveMember();
print('${member?.nickname ?? member?.user.username} is typing');
});
Parameters:
forceWhether to force fetch the member from the API instead of cache. Defaults to false.
Implementation
Future<Member?> resolveMember({bool force = false}) {
return _datastore.member.get(serverId!.value, userId.value, force);
}