FlOverlayData constructor

FlOverlayData({
  1. required Widget child,
  2. double? top,
  3. double? left,
  4. double? bottom,
  5. double? right,
})

Implementation

FlOverlayData({
  required this.child,
  this.top,
  this.left,
  this.bottom,
  this.right,
});