center method
Wrap a widget in Center.
Implementation
Center center({
Key? key,
double? widthFactor,
double? heightFactor,
}) {
return Center(
key: key,
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
);
}