GdgButton.large constructor

const GdgButton.large({
  1. Key? key,
  2. void onPressed()?,
  3. Widget? child,
  4. Widget? icon,
  5. GdgColor color = GdgColors.primary,
})

Implementation

const GdgButton.large({
  super.key,
  this.onPressed,
  this.child,
  this.icon,
  this.color = GdgColors.primary,
}) : isLarge = true;