copyWith method

TestVectorString copyWith({
  1. List<String>? value,
})

Implementation

TestVectorString copyWith({List<String>? value}) =>
    TestVectorString(value: value ?? this.value);