copyWith method

TestVectorString copyWith({
  1. List<String>? value,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

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