CustomBorderWithIcon constructor

const CustomBorderWithIcon({
  1. Key? key,
  2. required bool showIcon,
  3. Color? iconBackground,
  4. Widget? icon,
  5. required Widget child,
  6. bool positionIconAtEnd = false,
  7. EdgeInsets? padding,
  8. Color? background,
  9. Color? borderColor,
  10. List<BoxShadow>? boxShadow,
})

Implementation

const CustomBorderWithIcon({
  super.key,
  required this.showIcon,
  this.iconBackground,
  this.icon,
  required this.child,
  this.positionIconAtEnd = false,
  this.padding,
  this.background,
  this.borderColor,
  this.boxShadow,
});