defaults property

Returns the default Android notification configuration.

Implementation

static AndroidNotificationConfig get defaults =>
    const AndroidNotificationConfig(
      channelId: 'default_channel',
      channelName: 'Default Channel',
      channelDescription: 'Default Channel',
      importance: Importance.max,
      priority: Priority.high,
      ticker: 'ticker',
      playSound: true,
      enableVibration: true,
      groupAlertBehavior: GroupAlertBehavior.all,
      autoCancel: true,
      showWhen: true,
      channelShowBadge: true,
    );