OPopupContent constructor

const OPopupContent({
  1. Widget? header,
  2. Widget? content,
  3. Widget? actionRow,
  4. Key? key,
})

Creates an instance of OPopupContent

Implementation

const OPopupContent({
  this.header,
  this.content,
  this.actionRow,
  Key? key,
})  : assert(header != null || content != null || actionRow != null),
      super(key: key);