CustomRoundButton constructor

const CustomRoundButton({
  1. Key? key,
  2. required dynamic onTap(),
})

Implementation

const CustomRoundButton({
  Key? key, required this.onTap,
}) : super(key: key);