void pushPhysicalModel({RRect rrect, double elevation, Color color })

Pushes a physical model operation onto the operation stack.

Rasterization will be clipped to the given shape.

See pop for details about the operation stack.

Source

void pushPhysicalModel({ RRect rrect, double elevation, Color color }) {
  _pushPhysicalModel(rrect._value, elevation, color.value);
}