SilEmptyButton constructor

const SilEmptyButton({
  1. double? radius,
  2. void onTapFunc()?,
  3. void onLongPress()?,
  4. double? width,
  5. double? height,
  6. double? borderWidth,
  7. Color? borderColor,
  8. BorderRadiusGeometry? borderRadius,
  9. EdgeInsetsGeometry? padding,
  10. EdgeInsetsGeometry? margin,
  11. AlignmentGeometry? alignment,
  12. Widget? child,
  13. Color? backgroundColor,
  14. bool useConstrained = false,
  15. HitTestBehavior? behavior = HitTestBehavior.deferToChild,
  16. Key? key,
})

Implementation

const SilEmptyButton(
    {this.radius,
    this.onTapFunc,
    this.onLongPress,
    this.width,
    this.height,
    this.borderWidth,
    this.borderColor,
    this.borderRadius,
    this.padding,
    this.margin,
    this.alignment,
    this.child,
    this.backgroundColor,
    this.useConstrained = false,
    this.behavior = HitTestBehavior.deferToChild,
    Key? key})
    : super(key: key);