read static method

void read(
  1. ActorArtboard artboard,
  2. StreamReader reader,
  3. ActorFill component
)

Implementation

static void read(
    ActorArtboard artboard, StreamReader reader, ActorFill component) {
  component._fillRule =
      fillRuleLookup[reader.readUint8('fillRule')] ?? FillRule.evenOdd;
}