fromMap method
Exports all content into a serializable object
Implementation
@override
NotificationChannelGroup? fromMap(Map<String, dynamic> mapData) {
_channelGroupKey = LocalAssertUtils.extractValue(
NOTIFICATION_CHANNEL_GROUP_KEY, mapData, String);
_channelGroupName = LocalAssertUtils.extractValue(
NOTIFICATION_CHANNEL_GROUP_NAME, mapData, String);
return this;
}