centered method
Centers this widget within the available space
Implementation
@widgetFactory
Widget centered({double? widthFactor, double? heightFactor}) {
return FleetCenter(
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
);
}