FloatWindowWidget constructor

const FloatWindowWidget({
  1. Key? key,
  2. required ContentWidgetBuilder builder,
  3. double? padding,
  4. double? x,
  5. double? y,
  6. Size? size,
  7. BorderRadius? borderRadius,
})

Implementation

const FloatWindowWidget({
  super.key,
  required this.builder,
  this.padding,
  this.x,
  this.y,
  this.size,
  this.borderRadius,
});