PlatformPopupBtn constructor

const PlatformPopupBtn({
  1. Key? key,
  2. required List<PopupMenuOption> options,
  3. required ImageEditorDesignModeE designMode,
  4. required String title,
  5. String? message,
})

Implementation

const PlatformPopupBtn({
  super.key,
  required this.options,
  required this.designMode,
  required this.title,
  this.message,
});