NotificationChannelGroup constructor

NotificationChannelGroup({
  1. required String channelGroupKey,
  2. required String channelGroupName,
})

Constructs a NotificationChannelGroup.

channelGroupKey: Unique key identifier for the channel group. channelGroupName: Name of the channel group.

Implementation

NotificationChannelGroup(
    {required String channelGroupKey, required String channelGroupName}) {
  _channelGroupKey = channelGroupKey;
  _channelGroupName = channelGroupName;
}