CenteredPage constructor

const CenteredPage({
  1. dynamic key,
  2. required dynamic child,
})

Implementation

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