ButtonCustomTransparent constructor

const ButtonCustomTransparent(
  1. Function function,
  2. Widget child, {
  3. EdgeInsets padding = EdgeInsets.zero,
  4. double sizeRadius = 0.0,
  5. EdgeInsets margin = EdgeInsets.zero,
  6. Color color = Colors.transparent,
  7. Color borderColor = Colors.transparent,
  8. BorderRadiusGeometry? borderRadius,
  9. double borderWidth = 2,
  10. Border? border,
  11. Key? key,
  12. Function? funSub,
  13. bool bgInside = false,
  14. double? width,
  15. double? height,
  16. Alignment? align,
})

Implementation

const ButtonCustomTransparent(this.function, this.child,
    {this.padding = EdgeInsets.zero, this.sizeRadius = 0.0, this.margin = EdgeInsets.zero,
      this.color = Colors.transparent, this.borderColor = Colors.transparent,
      this.borderRadius, this.borderWidth = 2, this.border, Key? key, this.funSub,
      this.bgInside = false, this.width, this.height, this.align}) : super(key:key);