SeoButton constructor

const SeoButton({
  1. Key? key,
  2. required String label,
  3. TextStyle? labelStyle,
  4. VoidCallback? onPressed,
  5. String? id,
  6. ButtonStyle? style,
})

Creates a SeoButton widget.

Implementation

const SeoButton({
  super.key,
  required this.label,
  this.labelStyle,
  this.onPressed,
  this.id,
  this.style,
});