general constant

NotificationChannel const general

General-purpose notifications (news, reminders, non-urgent updates).

Implementation

static const NotificationChannel general = NotificationChannel(
  id: 'general',
  name: 'General',
  description: 'General app notifications.',
  importance: PkNotificationImportance.defaultImportance,
  playSound: true,
  enableVibration: true,
);