Applies a decoration to the widget with a background color.
Widget backgroundColor(Color color) { return DecoratedBox( decoration: BoxDecoration(color: color), child: this, ); }