TransparentPage constructor

TransparentPage({
  1. Widget? child,
})

Implementation

TransparentPage({
  Widget? child,
}) : super(
        key: UniqueKey(),
        child: SizedBox(child: child),
      );