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