retrieve Member By Id Or Null
suspend fun Guild.retrieveMemberByIdOrNull(userId: String, useCache: Boolean = true): Member?(source)
Retrieves a Member with the provided ID.
Throws the same exceptions as Guild.retrieveMemberById, minus ErrorResponse.UNKNOWN_MEMBER and ErrorResponse.UNKNOWN_USER.
Parameters
user Id
The ID of the member to retrieve
use Cache
Whether this should rely on the cache, set to false
to always make a request.