CupertinoPopupSurface constructor

const CupertinoPopupSurface(
  1. {Key? key,
  2. bool isSurfacePainted = true,
  3. Widget? child}
)

Creates an iOS-style rounded rectangle popup surface.

Implementation

const CupertinoPopupSurface({
  super.key,
  this.isSurfacePainted = true,
  this.child,
});