copyWith method Null safety
- {required Piece? squareState}
Implementation
SquareModel copyWith({required Piece? squareState}) {
return SquareModel(
squarePiece: squareState,
squareName: this.squareName,
);
}
SquareModel copyWith({required Piece? squareState}) {
return SquareModel(
squarePiece: squareState,
squareName: this.squareName,
);
}