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