DecoratedContainerStyle constructor

const DecoratedContainerStyle({
  1. EdgeInsetsGeometry? margin,
  2. EdgeInsetsGeometry? padding,
  3. TextStyle? titleStyle,
  4. TextStyle? contentStyle,
  5. Color? background,
  6. BoxBorder? border,
  7. double? borderRadius,
  8. Gradient? gradient,
})

Implementation

const DecoratedContainerStyle({
  this.margin,
  this.padding,
  this.titleStyle,
  this.contentStyle,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});