ReflectivePage constructor

const ReflectivePage({
  1. Key? key,
  2. Color bgColor = Colors.black,
  3. Widget body = const SizedBox(),
})

Implementation

const ReflectivePage({
  super.key,
  this.bgColor = Colors.black,
  this.body = const SizedBox(),
});