BsIconLink constructor

const BsIconLink({
  1. Key? key,
  2. required Widget label,
  3. required Widget icon,
  4. required VoidCallback onPressed,
  5. bool iconAfter = true,
  6. Color? color,
  7. double gap = 8.0,
})

Creates a BsIconLink.

Implementation

const BsIconLink({
  super.key,
  required this.label,
  required this.icon,
  required this.onPressed,
  this.iconAfter = true,
  this.color,
  this.gap = 8.0,
});