copyWith method

AddPendingLiveStoryReaction copyWith({
  1. int? groupCallId,
  2. int? starCount,
})

Implementation

AddPendingLiveStoryReaction copyWith({int? groupCallId, int? starCount}) =>
    AddPendingLiveStoryReaction(
      groupCallId: groupCallId ?? this.groupCallId,
      starCount: starCount ?? this.starCount,
    );