TertiaryButton constructor

const TertiaryButton(
  1. String title, {
  2. Key? key,
  3. VoidCallback? onPressed,
  4. EdgeInsets? padding,
  5. Color? textColor,
  6. TertiaryButtonIconStyle? iconStyle,
})

Creates a tertiary text button.

Implementation

const TertiaryButton(
    this.title, {
      super.key,
      this.onPressed,
      this.padding,
      this.textColor,
      this.iconStyle,
    });