scheduledNotificationToMap function

String scheduledNotificationToMap(
  1. List<ScheduledNotification> data
)

Implementation

String scheduledNotificationToMap(List<ScheduledNotification> data) =>
    json.encode(List<dynamic>.from(data.map((x) => x.toMap())));