copyWith method

LiveStoryDonors copyWith({
  1. int? totalStarCount,
  2. List<PaidReactor>? topDonors,
})

Implementation

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