Center constructor

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

Center API.

Implementation

const Center({required super.child, super.widthFactor, super.heightFactor})
  : super(alignment: Alignment.center);