FloatingAssistiveButton constructor

const FloatingAssistiveButton({
  1. Key? key,
  2. Color backgroundColor = Colors.black,
  3. double? backgroundOpacity,
  4. required dynamic onItemSelected(
    1. int
    ),
  5. double borderRadius = 29,
  6. required Color primaryColor,
  7. required List<IconData> children,
  8. bool showTabName = false,
  9. List<String>? textList,
  10. TextStyle? titleStyle,
  11. required IconData primaryIcon,
})

Implementation

const FloatingAssistiveButton({
  Key? key,
  this.backgroundColor = Colors.black,
  this.backgroundOpacity,
  required this.onItemSelected,
  this.borderRadius = 29,
  required this.primaryColor,
  required this.children,
  this.showTabName = false,
  this.textList,
  this.titleStyle,
  required this.primaryIcon,
}) : super(key: key);