read static method

RadialGradientColor read(
  1. ActorArtboard artboard,
  2. StreamReader reader,
  3. RadialGradientColor component
)
override

Implementation

static RadialGradientColor read(ActorArtboard artboard, StreamReader reader,
    RadialGradientColor component) {
  GradientColor.read(artboard, reader, component);

  component.secondaryRadiusScale = reader.readFloat32('secondaryRadiusScale');

  return component;
}