ZetaButton.outlineSubtle constructor

const ZetaButton.outlineSubtle(
  1. {required String label,
  2. VoidCallback? onPressed,
  3. ZetaWidgetSize size = ZetaWidgetSize.medium,
  4. ZetaWidgetBorder borderType = ZetaWidgetBorder.rounded,
  5. IconData? leadingIcon,
  6. IconData? trailingIcon,
  7. Key? key}
)

Constructs ZetaButton with Outline Subtle theme.

Implementation

const ZetaButton.outlineSubtle({
  required this.label,
  this.onPressed,
  this.size = ZetaWidgetSize.medium,
  this.borderType = ZetaWidgetBorder.rounded,
  this.leadingIcon,
  this.trailingIcon,
  super.key,
}) : type = ZetaButtonType.outlineSubtle;