Drawer constructor

const Drawer({Key key, double elevation: 16.0, Widget child, String semanticLabel })

Creates a material design drawer.

Typically used in the Scaffold.drawer property.

Implementation

const Drawer({
  Key key,
  this.elevation = 16.0,
  this.child,
  this.semanticLabel,
}) : super(key: key);