setSelectedShape method

dynamic setSelectedShape(
  1. BoxShape shape
)

Set the Selected Shape

Implementation

setSelectedShape(BoxShape shape) {
  setState(() {
    selectedShape = shape;
  });
}