LandingButton constructor

const LandingButton(
  1. {Key? key,
  2. required String text,
  3. required VoidCallback onPressed,
  4. bool outlined = false}
)

Implementation

const LandingButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.outlined = false,
});