elevation property
inherited
The z-coordinate at which to place this material.
If debugDisableShadows is set, this value is ignored and no shadow is drawn (an outline is rendered instead).
Implementation
double get elevation => _elevation;
inherited
Implementation
set elevation(double value) {
  assert(value != null);
  if (elevation == value)
    return;
  final bool didNeedCompositing = alwaysNeedsCompositing;
  _elevation = value;
  if (didNeedCompositing != alwaysNeedsCompositing)
    markNeedsCompositingBitsUpdate();
  markNeedsPaint();
}