read static method

Implementation

static ActorTranslationConstraint read(ActorArtboard artboard,
    StreamReader reader, ActorTranslationConstraint? component) {
  // ignore: parameter_assignments
  component ??= ActorTranslationConstraint();
  ActorAxisConstraint.read(artboard, reader, component);

  return component;
}