FloatingConfig constructor

const FloatingConfig({
  1. required double width,
  2. required double height,
  3. FloatingAnchor anchor = FloatingAnchor.bottomRight,
})

Implementation

const FloatingConfig({
  required this.width,
  required this.height,
  this.anchor = FloatingAnchor.bottomRight,
});