Center constructor

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

Implementation

Center({double? widthFactor, double? heightFactor, Widget? child})
    : super(
          widthFactor: widthFactor, heightFactor: heightFactor, child: child);