buildBoxDecorationLine method

BoxDecoration buildBoxDecorationLine()

Implementation

BoxDecoration buildBoxDecorationLine() {
  return BoxDecoration(
    border: Border(
      bottom: BorderSide(color: Colors.black12, width: 1),
    ),
  );
}