RoundedButton constructor

const RoundedButton({
  1. Key? key,
  2. required bool isPressed,
  3. required String title,
})

Implementation

const RoundedButton({
  Key? key,
  required this.isPressed,
  required this.title,
}) : super(key: key);