NotificationChannelGroup constructor

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

Implementation

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