centered method

Widget centered({
  1. double? widthFactor,
  2. double? heightFactor,
})

Implementation

Widget centered({double? widthFactor, double? heightFactor}) {
  return Center(widthFactor: widthFactor, heightFactor: heightFactor, child: this);
}