copyWith method
Implementation
@override
UpdateGroupCall copyWith({
GroupCall? groupCall,
dynamic extra,
int? clientId,
}) => UpdateGroupCall(
groupCall: groupCall ?? this.groupCall,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);