fromMap method

  1. @override
NotificationChannelGroup? fromMap(
  1. Map<String, dynamic> mapData
)

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;
}