virtual public void ShowToast(string message, GamebaseUIToastType type)
        {
            NativeRequest.Util.AlertDialog alertDialog = new NativeRequest.Util.AlertDialog();
            alertDialog.message  = message;
            alertDialog.duration = (int)type;

            string jsonData = JsonMapper.ToJson(new UnityMessage(GamebaseUtil.UTIL_API_SHOW_TOAST_WITH_TYPE, jsonData: JsonMapper.ToJson(alertDialog)));

            messageSender.GetAsync(jsonData);
        }
 public void ShowToast(string message, GamebaseUIToastType type)
 {
     GamebaseErrorNotifier.FireNotSupportedAPI(this, "ShowToast");
 }
 public void ShowToast(string message, GamebaseUIToastType type)
 {
     util.ShowToast(message, type);
 }