CustomButtons constructor

const CustomButtons({
  1. Key? key,
  2. required String text,
  3. required dynamic onTap()?,
})

Implementation

const CustomButtons({super.key, required this.text, required this.onTap});