roundedPinBoxDecoration property

PinBoxDecoration roundedPinBoxDecoration
getter/setter pair

Creates a circular box decoration style

Implementation

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