copyWith method

UpdateLiveStoryTopDonors copyWith({
  1. int? groupCallId,
  2. LiveStoryDonors? donors,
})

Implementation

UpdateLiveStoryTopDonors copyWith({
  int? groupCallId,
  LiveStoryDonors? donors,
}) => UpdateLiveStoryTopDonors(
  groupCallId: groupCallId ?? this.groupCallId,
  donors: donors ?? this.donors,
);