FloatWindowWidget constructor

const FloatWindowWidget({
  1. Key? key,
  2. required double top,
  3. required double left,
  4. VoidCallback? onFloatWindowTap,
})

Implementation

const FloatWindowWidget({
  Key? key,
  required this.top,
  required this.left,
  this.onFloatWindowTap,
}) : super(key: key);