Shadow
          class
        
        
class Shadow {
 int color;
 num offsetX;
 num offsetY;
 num blur;
 DisplayObject targetSpace;
 Shadow(this.color, this.offsetX , this.offsetY, this.blur);
}
 
Constructors
new Shadow(int color, num offsetX, num offsetY, num blur) #
Creates a new Object instance.
Object instances have no meaningful state, and are only useful
through their identity. An Object instance is equal to itself
only.
 
Shadow(this.color, this.offsetX , this.offsetY, this.blur);
 
 
Properties
        
DisplayObject targetSpace