square property
Widget
get
square
Implementation
Widget get square {
return AnimatedContainer(
duration: attribute.animationDuration,
margin: EdgeInsets.symmetric(horizontal: margin),
height: attribute.size,
width: attribute.size,
decoration: BoxDecoration(
color: backgroundColor,
border: Border.all(
color: unselectedBackgroundColor, width: attribute.borderSize),
));
}