Popup constructor

const Popup({
  1. Key? key,
  2. required Widget child,
  3. double? left,
  4. double? top,
})

Implementation

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