copyWith method

TestSquareInt copyWith({
  1. int? x,
})

Implementation

TestSquareInt copyWith({
  int? x,
}) => TestSquareInt(
  x: x ?? this.x,
);