BoxButton constructor

const BoxButton({
  1. required String title,
  2. bool busy = false,
  3. bool disable = false,
})

Implementation

const BoxButton({
   required this.title,
   this.busy=false,
   this.disable=false
});