copyWith method

VersionExpandable copyWith({
  1. String? content,
  2. String? collaborators,
})

Implementation

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