copyWith method

LeaveGroupCall copyWith({
  1. int? groupCallId,
})

Implementation

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