NotificationSet.fromJson constructor
NotificationSet.fromJson(
- Map json_
Implementation
NotificationSet.fromJson(core.Map json_)
: this(
notification:
(json_['notification'] as core.List?)
?.map(
(value) => Notification.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
notificationSetId: json_['notificationSetId'] as core.String?,
);