copyWith method
Implementation
Author copyWith({
String? id,
String? displayName,
String? url,
String? image,
}) {
return Author(
id: id ?? this.id,
displayName: displayName ?? this.displayName,
url: url ?? this.url,
image: image ?? this.image,
);
}