CodeNestFloatingActionBtn constructor

const CodeNestFloatingActionBtn({
  1. Key? key,
  2. required Widget icon,
  3. required VoidCallback onPressed,
  4. Color backgroundColor = Colors.blue,
  5. double elevation = 6.0,
  6. double size = 56.0,
  7. ShapeBorder shape = const CircleBorder(),
})

Implementation

const CodeNestFloatingActionBtn({
  super.key,
  required this.icon,
  required this.onPressed,
  this.backgroundColor = Colors.blue,
  this.elevation = 6.0,
  this.size = 56.0,
  this.shape = const CircleBorder(),
});