copyWith method
Implementation
@override
PageBlockAuthorDate copyWith({
RichText? author,
int? publishDate,
}) =>
PageBlockAuthorDate(
author: author ?? this.author,
publishDate: publishDate ?? this.publishDate,
);
@override
PageBlockAuthorDate copyWith({
RichText? author,
int? publishDate,
}) =>
PageBlockAuthorDate(
author: author ?? this.author,
publishDate: publishDate ?? this.publishDate,
);