FloatingView constructor

const FloatingView({
  1. Key? key,
  2. required Widget childBuilder(),
  3. required FloatingController controller,
  4. FloatingViewTheme theme = const FloatingViewTheme(),
})

Implementation

const FloatingView({
  super.key,
  required this.childBuilder,
  required this.controller,
  this.theme = const FloatingViewTheme(),
});