Center constructor

const Center({
  1. required Widget child,
  2. int? width,
  3. int? height,
})

Implementation

const Center({required this.child, this.width, this.height});