BoxDecorationDto constructor

const BoxDecorationDto({
  1. ColorDto? color,
  2. BoxBorderDto? border,
  3. BorderRadiusGeometryDto? borderRadius,
  4. GradientDto<Gradient>? gradient,
  5. List<BoxShadowDto>? boxShadow,
  6. BoxShape? shape,
  7. BlendMode? backgroundBlendMode,
  8. DecorationImageDto? image,
})

Implementation

const BoxDecorationDto({
  super.color,
  this.border,
  this.borderRadius,
  super.gradient,
  super.boxShadow,
  this.shape,
  this.backgroundBlendMode,
  this.image,
});