read static method
Implementation
static ActorShape read(
ActorArtboard artboard, StreamReader reader, ActorShape component) {
ActorDrawable.read(artboard, reader, component);
if (artboard.actor.version >= 22) {
component._transformAffectsStroke =
reader.readBool('transformAffectsStroke');
}
return component;
}