copyWith method

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

Implementation

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