customRoundedPinBoxDecoration top-level property

PinBoxDecoration customRoundedPinBoxDecoration
getter/setter pair

Implementation

PinBoxDecoration customRoundedPinBoxDecoration = (
  Color borderColor,
  Color pinBoxColor, {
  double borderWidth = 1.0,
  double? radius,
}) {
  return BoxDecoration(
      border: Border.all(
        color: borderColor,
        width: borderWidth,
      ),
      color: pinBoxColor,
      borderRadius: const BorderRadius.all(Radius.circular(8)));
};