copyWith method

TestVectorIntObject copyWith({
  1. List<TestInt>? value,
})

Implementation

TestVectorIntObject copyWith({List<TestInt>? value}) =>
    TestVectorIntObject(value: value ?? this.value);