roundedPinBoxDecoration property

PinBoxDecoration roundedPinBoxDecoration
getter/setter pair

Implementation

static PinBoxDecoration roundedPinBoxDecoration = (
  Color borderColor,
  Color pinBoxColor, {
  double borderWidth = 2.0,
  double radius = 0,
}) {
  return BoxDecoration(
    border: Border.all(
      color: borderColor,
      width: borderWidth,
    ),
    shape: BoxShape.circle,
    color: pinBoxColor,
  );
};