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.

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