Center constructor

const Center({Key key, double widthFactor, double heightFactor, Widget child })

Creates a widget that centers its child.

Implementation

const Center({ Key key, double widthFactor, double heightFactor, Widget child })
  : super(key: key, widthFactor: widthFactor, heightFactor: heightFactor, child: child);