const Card({Key key, Color color, int elevation: 2, Widget child })

Creates a material design card.

Source

const Card({
  Key key,
  this.color,
  this.elevation: 2,
  this.child
}) : super(key: key);