/// <summary>
        /// Shows the view to the user with a callback.
        /// </summary>
        public void Show()
        {
            var serializedViewBuilder = ToJson().Print(pretty: GetSocialSettings.IsDebugLogsEnabled);

#if DEVELOPMENT_BUILD
            Log.D("Serialized view builder: {0}", serializedViewBuilder);
#endif
            getSocialImpl.ShowView(serializedViewBuilder, OnViewAction);
        }