FloatingButton constructor

const FloatingButton({
  1. Key? key,
  2. required ChatbotConfig chatbotConfig,
  3. required bool isWebViewVisible,
  4. required VoidCallback onPress,
})

Implementation

const FloatingButton({
  super.key,
  required this.chatbotConfig,
  required this.isWebViewVisible,
  required this.onPress,
});