TContainerWBoxDecoration constructor

const TContainerWBoxDecoration({
  1. Key? key,
  2. Widget child = const SizedBox(),
  3. double height = 40,
  4. double width = 40,
  5. EdgeInsets margin = const EdgeInsets.all(16),
  6. EdgeInsets padding = const EdgeInsets.all(16),
  7. double borderRadius = 8,
  8. Color backgroundColor = Colors.white,
  9. BoxShadow? boxShadow,
})

Implementation

const TContainerWBoxDecoration({
  super.key,
  this.child = const SizedBox(),
  this.height = 40,
  this.width = 40,
  this.margin = const EdgeInsets.all(16),
  this.padding = const EdgeInsets.all(16),
  this.borderRadius = 8,
  this.backgroundColor = Colors.white,
  this.boxShadow,
});