Color color
read-only

The color of the button, as printed on the Material. Defaults to null, meaning that the color is automatically derived from the Theme.

Typically, a material design color will be used, as follows:

 new FlatButton(
   color: Colors.blue[500],
   onPressed: _handleTap,
   child: new Text('DEMO'),
 ),