copyWith method
Implementation
ToggleGiftIsSaved copyWith({String? receivedGiftId, bool? isSaved}) =>
ToggleGiftIsSaved(
receivedGiftId: receivedGiftId ?? this.receivedGiftId,
isSaved: isSaved ?? this.isSaved,
);
ToggleGiftIsSaved copyWith({String? receivedGiftId, bool? isSaved}) =>
ToggleGiftIsSaved(
receivedGiftId: receivedGiftId ?? this.receivedGiftId,
isSaved: isSaved ?? this.isSaved,
);