setNotificationGroupingRule method

Future<void> setNotificationGroupingRule(
  1. RetenoNotificationGroupingRule? rule
)

Configures Android notification grouping for Reteno push notifications.

Pass null to disable grouping. This method has no effect on iOS.

Implementation

Future<void> setNotificationGroupingRule(
  RetenoNotificationGroupingRule? rule,
) {
  return _platform.setNotificationGroupingRule(rule);
}