public UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = TwitterTableView.DequeueReusableCell(nameof(TweetTableViewCell), indexPath) as TweetTableViewCell;


            cell.UserImage        = lstTweets[indexPath.Row].UserImage;
            cell.UserName         = lstTweets[indexPath.Row].Name;
            cell.FavoriteCount    = $"Favoritos: {lstTweets[indexPath.Row].FavoriteCount.ToString()}";
            cell.RetweetCount     = $"Retweets: {lstTweets[indexPath.Row].RetweetedCount.ToString()}";
            cell.TweetDescription = lstTweets[indexPath.Row].Text;



            return(cell);
        }