WindowPopup constructor

const WindowPopup({
  1. Key? key,
  2. required CreateWindowAction createWindowAction,
  3. required void closePopup(),
})

Implementation

const WindowPopup({Key? key, required this.createWindowAction, required this.closePopup })
    : super(key: key);