buildBoxDecorationLine method Null safety

BoxDecoration buildBoxDecorationLine()

Implementation

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