ButtonTextWidget constructor

ButtonTextWidget(
  1. Widget child,
  2. GestureTapCallback? onPressed,
  3. Color colorLeft,
  4. Color color,
  5. Color bgColor, {
  6. Key? key,
  7. EdgeInsetsGeometry? margin,
  8. EdgeInsetsGeometry? padding,
  9. BorderSide? side,
})

Implementation

ButtonTextWidget(
    this.child, this.onPressed, this.colorLeft, this.color, this.bgColor,
    {Key? key, this.margin, this.padding, this.side})
    : super(key: key);