File: Platform\ImageExtensions.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
namespace Microsoft.Maui.Controls.Platform;
 
static partial class ImageExtensions
{
	public static bool IsNullOrEmpty(this ImageSource? imageSource) =>
		imageSource is null || imageSource.IsEmpty;
}