scheduledNotificationFromMap function

List<ScheduledNotification> scheduledNotificationFromMap(
  1. String str
)

Implementation

List<ScheduledNotification> scheduledNotificationFromMap(String str) =>
    List<ScheduledNotification>.from(
        json.decode(str).map((x) => ScheduledNotification.fromMap(x)));