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