copyWith method
Implementation
VersionedEntity copyWith({String? title, String? id, BodyBulk? body}) {
return VersionedEntity(
title: title ?? this.title,
id: id ?? this.id,
body: body ?? this.body,
);
}
VersionedEntity copyWith({String? title, String? id, BodyBulk? body}) {
return VersionedEntity(
title: title ?? this.title,
id: id ?? this.id,
body: body ?? this.body,
);
}