fitted method
Wraps the widget with a FittedBox that adapts to the screen size.
Implementation
Widget fitted({
  BoxFit fit = BoxFit.contain,
  Alignment alignment = Alignment.center,
}) {
  return FittedBox(
    fit: fit,
    alignment: alignment,
    child: this,
  );
}