copyWith method

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

Implementation

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