read static method
Implementation
static ActorNodeSolo read(
ActorArtboard artboard, StreamReader reader, ActorNodeSolo? node) {
// ignore: parameter_assignments
node ??= ActorNodeSolo();
ActorNode.read(artboard, reader, node);
node._activeChildIndex = reader.readUint32('activeChild');
return node;
}