RoundedButtonsRow constructor

const RoundedButtonsRow({
  1. Key? key,
  2. required String titleOne,
  3. required String titleTwo,
  4. required dynamic onPressedOne(),
  5. required dynamic onPressedTwo(),
})

Implementation

const RoundedButtonsRow({
  Key? key,
  required this.titleOne,
  required this.titleTwo,
  required this.onPressedOne,
  required this.onPressedTwo,
}) : super(key: key);