decoration property

BoxDecoration? get decoration

Implementation

BoxDecoration? get decoration {
  BoxDecoration boxDecoration = BoxDecoration(
    color: _backgroundColor,
    image: _backgroundImage,
    gradient: _gradient,
    border: _border,
    borderRadius: _borderRadius,
    shape: _boxShape ?? BoxShape.rectangle,
    backgroundBlendMode: _backgroundBlendMode,
    boxShadow: _boxShadow,
  );
  return boxDecoration;
}