boxEntryBorderBottom static method

dynamic boxEntryBorderBottom({
  1. Color? color,
})

BoxDecoration con border.bottom e di spessore 1 di colore se nullo bianco

Implementation

static boxEntryBorderBottom({Color? color}) {
  return BoxDecoration(border: Border(bottom: BorderSide(color: color ?? Colors.white, width: 1)));
}