copyWith method

TestVectorStringObject copyWith({
  1. List<TestString>? value,
})

Implementation

TestVectorStringObject copyWith({List<TestString>? value}) =>
    TestVectorStringObject(value: value ?? this.value);