DefaultBtnGeneric constructor

const DefaultBtnGeneric({
  1. Key? key,
  2. required String title,
  3. required Function onTap,
  4. bool isBusy = false,
  5. double btnHeight = 40.0,
})

Implementation

const DefaultBtnGeneric({super.key,required this.title,required this.onTap,this.isBusy = false,this.btnHeight = 40.0,
});