toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      'codePage': codePage,
      'notificationId': notificationId,
      'pageUrl': pageUrl,
      'titre': titre,
      'description': description,
      'imageBg': imageBg,
      'dayVerses': (dayVerses == null) ? null : dayVerses?.convertToJson()
    };