copyWith method

UpdateOwnedStarCount copyWith({
  1. StarAmount? starAmount,
})

Implementation

UpdateOwnedStarCount copyWith({StarAmount? starAmount}) =>
    UpdateOwnedStarCount(starAmount: starAmount ?? this.starAmount);