public static ToastNotification GetNotification(this ToastContentBuilder builder)
        {
            if (builder is null)
            {
                throw new ArgumentNullException(nameof(builder));
            }

            return(new ToastNotification(builder.GetToastXml()).SetToastHideOnDismiss());
        }