public Task <User> GetUserByIdAsync(long id)
 => GetAsync <User>(ServerRoutes.GetUserById(ApiUrl, id));
Example #2
0
 public Task <UserInfo> GetUserByIdAsync(long id)
 => GetAsync <UserInfo>(ServerRoutes.GetUserById(id));