Center constructor

const Center({
  1. Key? key,
  2. double? widthFactor,
  3. double? heightFactor,
  4. required Widget child,
})

Implementation

const Center({
  super.key,
  this.widthFactor,
  this.heightFactor,
  required this.child,
});