copyWith method

JoinLiveStory copyWith({
  1. int? groupCallId,
  2. GroupCallJoinParameters? joinParameters,
})

Implementation

JoinLiveStory copyWith({
  int? groupCallId,
  GroupCallJoinParameters? joinParameters,
}) => JoinLiveStory(
  groupCallId: groupCallId ?? this.groupCallId,
  joinParameters: joinParameters ?? this.joinParameters,
);