copyWith method

TestVectorInt copyWith({
  1. List<int>? value,
})

Implementation

TestVectorInt copyWith({List<int>? value}) =>
    TestVectorInt(value: value ?? this.value);