isDesktop property

bool get isDesktop

Implementation

bool get isDesktop {
  if (Platform.isLinux || Platform.isMacOS || Platform.isWindows) {
    return true;
  }
  return false;
}