copyWith method

InternalLinkTypeStarPurchase copyWith({
  1. int? starCount,
  2. String? purpose,
})

Implementation

InternalLinkTypeStarPurchase copyWith({int? starCount, String? purpose}) =>
    InternalLinkTypeStarPurchase(
      starCount: starCount ?? this.starCount,
      purpose: purpose ?? this.purpose,
    );