copyWith method
Implementation
VersionExpandable copyWith({String? content, String? collaborators}) {
return VersionExpandable(
content: content ?? this.content,
collaborators: collaborators ?? this.collaborators,
);
}
VersionExpandable copyWith({String? content, String? collaborators}) {
return VersionExpandable(
content: content ?? this.content,
collaborators: collaborators ?? this.collaborators,
);
}