import 'package:flutter/foundation.dart'; /// 웹이 아닌 플랫폼을 위한 스텁 구현 void showNotification(String title, String message, String status) { // 웹이 아닌 플랫폼에서는 아무것도 하지 않음 debugPrint('Notification (non-web): $title - $message - $status'); }