line property

Widget get line

Implementation

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