background method

Widget background(
  1. Color color
)

Implementation

Widget background(Color color) {
  return Container(
    child: this,
    color: color,
  );
}