LwaButton constructor

const LwaButton({
  1. Key? key,
  2. required VoidCallback onPressed,
})

Implementation

const LwaButton({
  Key? key,
  required this.onPressed,
}) : super(key: key);