copyWith method

TestCallVectorString copyWith({
  1. List<String>? x,
})

Implementation

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