isAppleOS property

bool isAppleOS

Implementation

bool get isAppleOS => switch (defaultTargetPlatform) {
      TargetPlatform.iOS || TargetPlatform.macOS => true,
      _ => false,
    };