FloatingAddButton constructor

const FloatingAddButton({
  1. Key? key,
  2. required dynamic onPressed(),
  3. Widget? widget,
  4. Decoration? decoration,
})

Implementation

const FloatingAddButton({
  Key? key,
  required this.onPressed,
  this.widget,
  this.decoration,
}) : super(key: key);