copyWith method

Version copyWith({
  1. DateTime? createdAt,
  2. String? message,
  3. int? number,
  4. bool? minorEdit,
  5. String? authorId,
})

Implementation

Version copyWith(
    {DateTime? createdAt,
    String? message,
    int? number,
    bool? minorEdit,
    String? authorId}) {
  return Version(
    createdAt: createdAt ?? this.createdAt,
    message: message ?? this.message,
    number: number ?? this.number,
    minorEdit: minorEdit ?? this.minorEdit,
    authorId: authorId ?? this.authorId,
  );
}