CellCupertinoPopupSurface constructor

const CellCupertinoPopupSurface({
  1. Key? key,
  2. ValueCell<bool> isSurfacePainted = const ValueCell.value(true),
  3. ValueCell<Widget?>? child,
})

Implementation

const CellCupertinoPopupSurface({
  super.key,
  this.isSurfacePainted = const ValueCell.value(true),
  this.child,
});