FlutterFeatureButton constructor

const FlutterFeatureButton({
  1. Key? key,
  2. String? text,
  3. Color? bgColor,
  4. double? height,
  5. double? width,
  6. ShapeBorder? border,
  7. TextStyle? textStyle,
  8. VoidCallback? onTap,
})

Implementation

const FlutterFeatureButton({
  super.key,
  this.text,
  this.bgColor,
  this.height,
  this.width,
  this.border,
  this.textStyle,
  this.onTap,
});