copyWith method
Implementation
DropGiftOriginalDetails copyWith({String? receivedGiftId, int? starCount}) =>
DropGiftOriginalDetails(
receivedGiftId: receivedGiftId ?? this.receivedGiftId,
starCount: starCount ?? this.starCount,
);