SurfaceBox constructor

const SurfaceBox({
  1. Key? key,
  2. Surface? surface,
  3. Widget? child,
})

Implementation

const SurfaceBox({
  super.key,
  this.surface,
  this.child,
});