defaultPinBoxDecoration property

PinBoxDecoration defaultPinBoxDecoration
getter/setter pair

Default BoxDecoration

Implementation

static PinBoxDecoration defaultPinBoxDecoration = (
  Color borderColor,
  Color pinBoxColor, {
  double borderWidth = 2.0,
  double radius = 5.0,
}) {
  return BoxDecoration(
      border: Border.all(
        color: borderColor,
        width: borderWidth,
      ),
      color: pinBoxColor,
      borderRadius: BorderRadius.circular(radius));
};