underlinedPinBoxDecoration property
getter/setter pair
Creates an underlined box decoration style
Implementation
static PinBoxDecoration underlinedPinBoxDecoration = (
Color? borderColor,
Color? pinBoxColor, {
double? borderWidth = 2.0,
double? radius,
}) {
return BoxDecoration(
border: Border(
bottom: BorderSide(
color: borderColor!,
width: borderWidth!,
),
),
);
};