InnerButton constructor

const InnerButton({
  1. Key? key,
  2. required String title,
  3. required Function onTap,
  4. bool isActiveBtn = false,
})

Implementation

const InnerButton({super.key,required this.title,required this.onTap,this.isActiveBtn = false});