BoxButton constructor

const BoxButton({
  1. Key? key,
  2. required String title,
  3. bool disabled = false,
  4. bool busy = false,
  5. double borderRadius = 8,
  6. void onTap()?,
  7. Widget? leading,
})

Implementation

const BoxButton({
  Key? key,
  required this.title,
  this.disabled = false,
  this.busy = false,
  this.borderRadius = 8,
  this.onTap,
  this.leading,
})  : outline = false,
      super(key: key);