copyWith method

SuggestedPostPriceStar copyWith({
  1. int? starCount,
})

Implementation

SuggestedPostPriceStar copyWith({int? starCount}) =>
    SuggestedPostPriceStar(starCount: starCount ?? this.starCount);