copyWith method
Implementation
TestVectorInt copyWith({
  List<int>? value,
  dynamic extra,
  int? clientId,
}) => TestVectorInt(
  value: value ?? this.value,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);TestVectorInt copyWith({
  List<int>? value,
  dynamic extra,
  int? clientId,
}) => TestVectorInt(
  value: value ?? this.value,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);