FullScreenPage constructor

const FullScreenPage({
  1. Key? key,
  2. required Widget child,
  3. required bool dark,
})

Implementation

const FullScreenPage({
  super.key,
  required this.child,
  required this.dark,
});