/// <summary> /// The make. /// </summary> /// <param name="content"> /// The content. /// </param> /// <returns> /// The <see cref="ToastContent" />. /// </returns> public static ToastContent MakeText(string content) { instance = new ToastContent(content); return(instance); }
/// <summary> /// The make func. /// </summary> /// <param name="content"> /// The content. /// </param> /// <returns> /// The <see cref="ToastContent" />. /// </returns> public static ToastContent MakeFunc(string content) { instance = new ToastContent(content, true); return(instance); }