FullScreen constructor

const FullScreen({
  1. required Component child,
  2. Color? backgroundColor,
  3. Key? key,
})

Implementation

const FullScreen({
  required this.child,
  this.backgroundColor,
  super.key,
});