CJBGBorderWidget constructor

CJBGBorderWidget({
  1. Key? key,
  2. double? width,
  3. double? height = 44,
  4. BoxConstraints? constraints,
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
  7. Color? backgroundColor,
  8. double? cornerRadius = 0,
  9. double? borderWidth = 0,
  10. Color? borderColor,
  11. required Widget child,
  12. VoidCallback? onPressed,
  13. HitTestBehavior? behavior,
})

Implementation

CJBGBorderWidget({
  Key? key,
  this.width,
  this.height = 44,
  this.constraints,
  this.margin,
  this.padding,
  this.backgroundColor,
  this.cornerRadius = 0,
  this.borderWidth = 0,
  this.borderColor,
  required this.child,
  this.onPressed,
  this.behavior,
}) : super(key: key);