Center constructor Null safety

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

Implementation

const factory Center(
    {final Key? key,
    final double? widthFactor,
    final double? heightFactor,
    required final Widget child}) = _$Center;