underlinedPinBoxDecoration property

PinBoxDecoration underlinedPinBoxDecoration
getter/setter pair

Underlined BoxDecoration

Implementation

static PinBoxDecoration underlinedPinBoxDecoration = (
  Color borderColor,
  Color pinBoxColor, {
  double borderWidth = 2.0,
  double radius = 0,
}) {
  return BoxDecoration(
    border: Border(
      bottom: BorderSide(
        color: borderColor,
        width: borderWidth,
      ),
    ),
  );
};