FeedDate constructor

FeedDate({
  1. String? publishedDate,
  2. String? publishedDateFormat,
  3. String? publishedDateFormatTime,
})

Implementation

FeedDate({
    String? publishedDate,
    String? publishedDateFormat,
    String? publishedDateFormatTime,}){
  _publishedDate = publishedDate;
  _publishedDateFormat = publishedDateFormat;
  _publishedDateFormatTime = publishedDateFormatTime;
}