copyWith method

TestCallString copyWith({
  1. String? x,
})

Implementation

TestCallString copyWith({
  String? x,
}) =>
    TestCallString(
      x: x ?? this.x,
    );