PopupWindowButton<T> constructor

const PopupWindowButton<T>({
  1. Key? key,
  2. Widget? child,
  3. MenuView? window,
  4. Offset offset = Offset.zero,
  5. double elevation = 6.0,
  6. int duration = 100,
  7. MaterialType type = MaterialType.card,
})

Implementation

const PopupWindowButton({
  Key? key,
  this.child,
  this.window,
  this.offset = Offset.zero,
  this.elevation = 6.0,
  this.duration = 100,
  this.type = MaterialType.card,
}) : super(key: key);