CalendarListEntryNotificationSettings.fromJson constructor

CalendarListEntryNotificationSettings.fromJson(
  1. 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(),
    );