copyWith method
Implementation
ChatBoostSlot copyWith({
int? slotId,
int? currentlyBoostedChatId,
int? startDate,
int? expirationDate,
int? cooldownUntilDate,
}) => ChatBoostSlot(
slotId: slotId ?? this.slotId,
currentlyBoostedChatId:
currentlyBoostedChatId ?? this.currentlyBoostedChatId,
startDate: startDate ?? this.startDate,
expirationDate: expirationDate ?? this.expirationDate,
cooldownUntilDate: cooldownUntilDate ?? this.cooldownUntilDate,
);