MiniButton constructor

const MiniButton({
  1. Key? key,
  2. required String title,
  3. bool disabled = false,
  4. bool busy = false,
  5. required void onTap(),
  6. Widget? prefix,
  7. Widget? suffix,
})

Implementation

const MiniButton({
  Key? key,
  required this.title,
  this.disabled = false,
  this.busy = false,
  required this.onTap,
  this.prefix,
  this.suffix,
})  : outline = false,
      super(key: key);