copyWith method

TestCallVectorInt copyWith({
  1. List<int>? x,
})

Implementation

TestCallVectorInt copyWith({
  List<int>? x,
}) =>
    TestCallVectorInt(
      x: x ?? this.x,
    );