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