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