CodeNestIconOutlinedBtn constructor

const CodeNestIconOutlinedBtn({
  1. Key? key,
  2. required Widget icon,
  3. required VoidCallback? onPressed,
  4. Color borderColor = Colors.blue,
  5. double borderWidth = 1.5,
  6. double size = 48.0,
  7. double borderRadius = 12.0,
  8. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
  9. Color? backgroundColor,
})

Implementation

const CodeNestIconOutlinedBtn({
  super.key,
  required this.icon,
  required this.onPressed,
  this.borderColor = Colors.blue,
  this.borderWidth = 1.5,
  this.size = 48.0,
  this.borderRadius = 12.0,
  this.padding = const EdgeInsets.all(8.0),
  this.backgroundColor,
});