copyWith method
Implementation
LiveStoryDonors copyWith({
int? totalStarCount,
List<PaidReactor>? topDonors,
}) => LiveStoryDonors(
totalStarCount: totalStarCount ?? this.totalStarCount,
topDonors: topDonors ?? this.topDonors,
);
LiveStoryDonors copyWith({
int? totalStarCount,
List<PaidReactor>? topDonors,
}) => LiveStoryDonors(
totalStarCount: totalStarCount ?? this.totalStarCount,
topDonors: topDonors ?? this.topDonors,
);