copyWith method

TestCallVectorIntObject copyWith({
  1. List<TestInt>? x,
})

Implementation

TestCallVectorIntObject copyWith({List<TestInt>? x}) =>
    TestCallVectorIntObject(x: x ?? this.x);