copyWith method
Implementation
GiftAuction copyWith({String? id, int? giftsPerRound, int? startDate}) =>
GiftAuction(
id: id ?? this.id,
giftsPerRound: giftsPerRound ?? this.giftsPerRound,
startDate: startDate ?? this.startDate,
);