TranslucentDecoration constructor Null safety

const TranslucentDecoration(
  1. {Color? color,
  2. DecorationImage? image,
  3. BoxBorder? border,
  4. BorderRadiusGeometry? borderRadius,
  5. List<BoxShadow>? boxShadow,
  6. Gradient? gradient,
  7. BlendMode? backgroundBlendMode,
  8. BoxShape shape = BoxShape.rectangle}
)

Implementation

const TranslucentDecoration({
  super.color,
  super.image,
  super.border,
  super.borderRadius,
  super.boxShadow,
  super.gradient,
  super.backgroundBlendMode,
  super.shape = BoxShape.rectangle,
});