isDesktop property
bool
get
isDesktop
Returns true if this is a desktop platform (macOS, Windows, or Linux).
Implementation
bool get isDesktop =>
this == DevicePlatform.macos ||
this == DevicePlatform.windows ||
this == DevicePlatform.linux;