isTargetDesktop property
bool
get
isTargetDesktop
Implementation
static bool get isTargetDesktop {
switch (targetType) {
case PlatformType.linux:
case PlatformType.macos:
case PlatformType.windows:
return true;
default:
return false;
}
}