copyWith method
Implementation
@override
JsonValueArray copyWith({
List<JsonValue>? values,
dynamic extra,
int? clientId,
}) => JsonValueArray(
values: values ?? this.values,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);