PinButton constructor

PinButton({
  1. double? width,
  2. String? titleId,
  3. String? title,
  4. double? height,
  5. GestureTapCallback? onPressed,
  6. BorderRadius? borderRadius,
  7. double? radius,
  8. Decoration? decoration,
  9. EdgeInsetsGeometry? padding,
  10. EdgeInsetsGeometry? margin,
  11. Color? color,
  12. TextStyle? style,
  13. Widget? child,
})

Implementation

PinButton({
  this.width,
  this.titleId,
  this.title,
  this.height,
  this.onPressed,
  this.borderRadius,
  this.radius,
  this.decoration,
  this.padding,
  this.margin,
  this.color,
  this.style,
  this.child,
});