AnimatedFloatingAction constructor

const AnimatedFloatingAction({
  1. Key? key,
  2. required String tooltip,
  3. required Widget icon,
  4. required dynamic audioCallOnPressed(),
  5. required dynamic videoCallOnPressed(),
  6. required Color? backgroundColor,
  7. required Color? foregroundColor,
})

Implementation

const AnimatedFloatingAction(
    {super.key,
    required this.tooltip,
    required this.icon,
    required this.audioCallOnPressed,
    required this.videoCallOnPressed,
    required this.backgroundColor,
    required this.foregroundColor});