isCupertino property

bool get isCupertino

Implementation

bool get isCupertino {
  if (kIsWeb) return false; // روی وب هیچ وقت iOS حساب نشه
  return defaultTargetPlatform == TargetPlatform.iOS ||
      defaultTargetPlatform == TargetPlatform.macOS;
}