BeerDrinkin.iOS.ProfileHeaderView.SetUser C# (CSharp) Method

SetUser() public method

public SetUser ( User user ) : void
user User
return void
        public void SetUser(User user)
        {
            this.user = user;
            nameLabel.Text = $"{user.FirstName} {user.LastName}";
            locationLabel.Text = user.Location;
            profileImage.SetImage(new NSUrl(user.ProfilePictureUri));
        }