LYBorderedContainer constructor

const LYBorderedContainer({
  1. Key? key,
  2. EdgeInsetsGeometry? margin,
  3. EdgeInsetsGeometry? padding,
  4. double? radius,
  5. double? borderWidth,
  6. bool? clip,
  7. Widget? child,
})

Implementation

const LYBorderedContainer({
  super.key,
  this.margin,
  this.padding,
  this.radius,
  this.borderWidth,
  this.clip,
  this.child,
});