isDesktop property

bool get isDesktop

Implementation

bool get isDesktop => switch (this) {
      AndroidPlatform() => false,
      IosPlatform() => false,
      _ => true
    };